solved laser current setup timing issue
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
ARM GAS /tmp/cctkyfI3.s page 1
|
||||
|
||||
|
||||
1 .cpu cortex-m7
|
||||
@ -58,7 +58,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** __HAL_RCC_GPIOx_CLK_ENABLE()
|
||||
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** (+++) Configure these ADC pins in analog mode using HAL_GPIO_Init()
|
||||
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** (##) In case of using interrupts (e.g. HAL_ADC_Start_IT())
|
||||
ARM GAS /tmp/ccwEB4d6.s page 2
|
||||
ARM GAS /tmp/cctkyfI3.s page 2
|
||||
|
||||
|
||||
32:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** (+++) Configure the ADC interrupt priority using HAL_NVIC_SetPriority()
|
||||
@ -118,7 +118,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* Includes ------------------------------------------------------------------*/
|
||||
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** #include "stm32f7xx_hal.h"
|
||||
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
ARM GAS /tmp/ccwEB4d6.s page 3
|
||||
ARM GAS /tmp/cctkyfI3.s page 3
|
||||
|
||||
|
||||
89:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /** @addtogroup STM32F7xx_HAL_Driver
|
||||
@ -178,7 +178,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** * @param hadc pointer to a ADC_HandleTypeDef structure that contains
|
||||
144:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** * the configuration information for the specified ADC.
|
||||
145:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** * @retval HAL status
|
||||
ARM GAS /tmp/ccwEB4d6.s page 4
|
||||
ARM GAS /tmp/cctkyfI3.s page 4
|
||||
|
||||
|
||||
146:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** */
|
||||
@ -238,7 +238,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
200:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** __HAL_ADC_CLEAR_FLAG(hadc, ADC_FLAG_JEOC);
|
||||
201:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
202:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* Check if Multimode enabled */
|
||||
ARM GAS /tmp/ccwEB4d6.s page 5
|
||||
ARM GAS /tmp/cctkyfI3.s page 5
|
||||
|
||||
|
||||
203:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** if(HAL_IS_BIT_CLR(ADC->CCR, ADC_CCR_MULTI))
|
||||
@ -298,7 +298,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
257:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** {
|
||||
258:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* Enable the Peripheral */
|
||||
259:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** __HAL_ADC_ENABLE(hadc);
|
||||
ARM GAS /tmp/ccwEB4d6.s page 6
|
||||
ARM GAS /tmp/cctkyfI3.s page 6
|
||||
|
||||
|
||||
260:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
@ -358,7 +358,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
314:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** {
|
||||
315:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** tmp1 = HAL_IS_BIT_CLR(hadc->Instance->CR2, ADC_CR2_JEXTEN);
|
||||
316:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** tmp2 = HAL_IS_BIT_CLR(hadc->Instance->CR1, ADC_CR1_JAUTO);
|
||||
ARM GAS /tmp/ccwEB4d6.s page 7
|
||||
ARM GAS /tmp/cctkyfI3.s page 7
|
||||
|
||||
|
||||
317:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** if((hadc->Instance == ADC1) && tmp1 && tmp2)
|
||||
@ -418,7 +418,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
371:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
372:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* Check if ADC is effectively disabled */
|
||||
373:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** if(HAL_IS_BIT_CLR(hadc->Instance->CR2, ADC_CR2_ADON))
|
||||
ARM GAS /tmp/ccwEB4d6.s page 8
|
||||
ARM GAS /tmp/cctkyfI3.s page 8
|
||||
|
||||
|
||||
374:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** {
|
||||
@ -478,7 +478,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
428:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** }
|
||||
429:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
430:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* Clear injected group conversion flag */
|
||||
ARM GAS /tmp/ccwEB4d6.s page 9
|
||||
ARM GAS /tmp/cctkyfI3.s page 9
|
||||
|
||||
|
||||
431:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** __HAL_ADC_CLEAR_FLAG(hadc, ADC_FLAG_JSTRT | ADC_FLAG_JEOC);
|
||||
@ -538,7 +538,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
485:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* Conditioned to: */
|
||||
486:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* - No conversion on the other group (regular group) is intended to */
|
||||
487:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* continue (injected and regular groups stop conversion and ADC disable */
|
||||
ARM GAS /tmp/ccwEB4d6.s page 10
|
||||
ARM GAS /tmp/cctkyfI3.s page 10
|
||||
|
||||
|
||||
488:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* are common) */
|
||||
@ -598,7 +598,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
542:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
543:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* Clear injected group conversion flag to have similar behaviour as */
|
||||
544:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* regular group: reading data register also clears end of conversion flag. */
|
||||
ARM GAS /tmp/ccwEB4d6.s page 11
|
||||
ARM GAS /tmp/cctkyfI3.s page 11
|
||||
|
||||
|
||||
545:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** __HAL_ADC_CLEAR_FLAG(hadc, ADC_FLAG_JEOC);
|
||||
@ -658,7 +658,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
599:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* Check if ADC peripheral is disabled in order to enable it and wait during
|
||||
600:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** Tstab time the ADC's stabilization */
|
||||
601:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** if((hadc->Instance->CR2 & ADC_CR2_ADON) != ADC_CR2_ADON)
|
||||
ARM GAS /tmp/ccwEB4d6.s page 12
|
||||
ARM GAS /tmp/cctkyfI3.s page 12
|
||||
|
||||
|
||||
602:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** {
|
||||
@ -718,7 +718,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
656:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** hadc->DMA_Handle->XferErrorCallback = ADC_MultiModeDMAError ;
|
||||
657:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
658:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* Manage ADC and DMA start: ADC overrun interruption, DMA start, ADC */
|
||||
ARM GAS /tmp/ccwEB4d6.s page 13
|
||||
ARM GAS /tmp/cctkyfI3.s page 13
|
||||
|
||||
|
||||
659:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* start (in case of SW start): */
|
||||
@ -778,7 +778,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
713:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** assert_param(IS_ADC_ALL_INSTANCE(hadc->Instance));
|
||||
714:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
715:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* Process locked */
|
||||
ARM GAS /tmp/ccwEB4d6.s page 14
|
||||
ARM GAS /tmp/cctkyfI3.s page 14
|
||||
|
||||
|
||||
716:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** __HAL_LOCK(hadc);
|
||||
@ -838,7 +838,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
770:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** __weak void HAL_ADCEx_InjectedConvCpltCallback(ADC_HandleTypeDef* hadc)
|
||||
771:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** {
|
||||
772:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* Prevent unused argument(s) compilation warning */
|
||||
ARM GAS /tmp/ccwEB4d6.s page 15
|
||||
ARM GAS /tmp/cctkyfI3.s page 15
|
||||
|
||||
|
||||
773:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** UNUSED(hadc);
|
||||
@ -898,7 +898,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
827:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* Clear the old sample time */
|
||||
828:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** hadc->Instance->SMPR2 &= ~ADC_SMPR2(ADC_SMPR2_SMP0, sConfigInjected->InjectedChannel);
|
||||
829:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
ARM GAS /tmp/ccwEB4d6.s page 16
|
||||
ARM GAS /tmp/cctkyfI3.s page 16
|
||||
|
||||
|
||||
830:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* Set the new sample time */
|
||||
@ -958,7 +958,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
884:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** else
|
||||
885:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** {
|
||||
886:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* Disable the selected ADC injected discontinuous mode */
|
||||
ARM GAS /tmp/ccwEB4d6.s page 17
|
||||
ARM GAS /tmp/cctkyfI3.s page 17
|
||||
|
||||
|
||||
887:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** hadc->Instance->CR1 &= ~(ADC_CR1_JDISCEN);
|
||||
@ -1018,7 +1018,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
941:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** * @retval HAL status
|
||||
942:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** */
|
||||
943:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** HAL_StatusTypeDef HAL_ADCEx_MultiModeConfigChannel(ADC_HandleTypeDef* hadc, ADC_MultiModeTypeDef* m
|
||||
ARM GAS /tmp/ccwEB4d6.s page 18
|
||||
ARM GAS /tmp/cctkyfI3.s page 18
|
||||
|
||||
|
||||
944:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** {
|
||||
@ -1078,7 +1078,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
998:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* of end of sequence. */
|
||||
999:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** if(ADC_IS_SOFTWARE_START_REGULAR(hadc) &&
|
||||
1000:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** (hadc->Init.ContinuousConvMode == DISABLE) &&
|
||||
ARM GAS /tmp/ccwEB4d6.s page 19
|
||||
ARM GAS /tmp/cctkyfI3.s page 19
|
||||
|
||||
|
||||
1001:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** (HAL_IS_BIT_CLR(hadc->Instance->SQR1, ADC_SQR1_L) ||
|
||||
@ -1138,7 +1138,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
33 0000 08B5 push {r3, lr}
|
||||
34 .LCFI0:
|
||||
35 .cfi_def_cfa_offset 8
|
||||
ARM GAS /tmp/ccwEB4d6.s page 20
|
||||
ARM GAS /tmp/cctkyfI3.s page 20
|
||||
|
||||
|
||||
36 .cfi_offset 3, -8
|
||||
@ -1198,7 +1198,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
82 0002 806B ldr r0, [r0, #56]
|
||||
83 .LVL5:
|
||||
1039:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** }
|
||||
ARM GAS /tmp/ccwEB4d6.s page 21
|
||||
ARM GAS /tmp/cctkyfI3.s page 21
|
||||
|
||||
|
||||
84 .loc 1 1039 5 is_stmt 0 view .LVU14
|
||||
@ -1258,7 +1258,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
129 0016 9168 ldr r1, [r2, #8]
|
||||
999:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** (hadc->Init.ContinuousConvMode == DISABLE) &&
|
||||
130 .loc 1 999 7 view .LVU26
|
||||
ARM GAS /tmp/ccwEB4d6.s page 22
|
||||
ARM GAS /tmp/cctkyfI3.s page 22
|
||||
|
||||
|
||||
131 0018 11F0405F tst r1, #805306368
|
||||
@ -1318,7 +1318,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
171 0054 FFF7FEFF bl HAL_ADC_ConvCpltCallback
|
||||
172 .LVL10:
|
||||
173 .L5:
|
||||
ARM GAS /tmp/ccwEB4d6.s page 23
|
||||
ARM GAS /tmp/cctkyfI3.s page 23
|
||||
|
||||
|
||||
1027:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
@ -1378,7 +1378,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
218 .loc 1 153 3 view .LVU52
|
||||
153:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
219 .loc 1 153 3 view .LVU53
|
||||
ARM GAS /tmp/ccwEB4d6.s page 24
|
||||
ARM GAS /tmp/cctkyfI3.s page 24
|
||||
|
||||
|
||||
220 0006 90F83C30 ldrb r3, [r0, #60] @ zero_extendqisi2
|
||||
@ -1438,7 +1438,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
259 .L14:
|
||||
167:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** {
|
||||
260 .loc 1 167 10 is_stmt 1 view .LVU69
|
||||
ARM GAS /tmp/ccwEB4d6.s page 25
|
||||
ARM GAS /tmp/cctkyfI3.s page 25
|
||||
|
||||
|
||||
167:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** {
|
||||
@ -1498,7 +1498,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
299 .loc 1 203 8 is_stmt 0 view .LVU85
|
||||
300 0074 1F4B ldr r3, .L25+12
|
||||
301 0076 5B68 ldr r3, [r3, #4]
|
||||
ARM GAS /tmp/ccwEB4d6.s page 26
|
||||
ARM GAS /tmp/cctkyfI3.s page 26
|
||||
|
||||
|
||||
203:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** {
|
||||
@ -1558,7 +1558,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
216:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** if((hadc->Instance == ADC1) && tmp1 && tmp2)
|
||||
341 .loc 1 216 14 is_stmt 0 view .LVU101
|
||||
342 00a4 5A68 ldr r2, [r3, #4]
|
||||
ARM GAS /tmp/ccwEB4d6.s page 27
|
||||
ARM GAS /tmp/cctkyfI3.s page 27
|
||||
|
||||
|
||||
343 00a6 02F48062 and r2, r2, #1024
|
||||
@ -1618,7 +1618,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
384 00d6 02B0 add sp, sp, #8
|
||||
385 .LCFI4:
|
||||
386 .cfi_remember_state
|
||||
ARM GAS /tmp/ccwEB4d6.s page 28
|
||||
ARM GAS /tmp/cctkyfI3.s page 28
|
||||
|
||||
|
||||
387 .cfi_def_cfa_offset 0
|
||||
@ -1678,7 +1678,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
437 @ link register save eliminated.
|
||||
245:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** __IO uint32_t counter = 0;
|
||||
438 .loc 1 245 1 is_stmt 0 view .LVU121
|
||||
ARM GAS /tmp/ccwEB4d6.s page 29
|
||||
ARM GAS /tmp/cctkyfI3.s page 29
|
||||
|
||||
|
||||
439 0000 82B0 sub sp, sp, #8
|
||||
@ -1738,7 +1738,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
263:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** while(counter != 0)
|
||||
478 .loc 1 263 13 view .LVU137
|
||||
479 0036 0193 str r3, [sp, #4]
|
||||
ARM GAS /tmp/ccwEB4d6.s page 30
|
||||
ARM GAS /tmp/cctkyfI3.s page 30
|
||||
|
||||
|
||||
264:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** {
|
||||
@ -1798,7 +1798,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
519 .L33:
|
||||
293:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
520 .loc 1 293 5 view .LVU153
|
||||
ARM GAS /tmp/ccwEB4d6.s page 31
|
||||
ARM GAS /tmp/cctkyfI3.s page 31
|
||||
|
||||
|
||||
293:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
@ -1858,7 +1858,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
559 009a 8B68 ldr r3, [r1, #8]
|
||||
560 009c 43F48003 orr r3, r3, #4194304
|
||||
561 00a0 8B60 str r3, [r1, #8]
|
||||
ARM GAS /tmp/ccwEB4d6.s page 32
|
||||
ARM GAS /tmp/cctkyfI3.s page 32
|
||||
|
||||
|
||||
334:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** }
|
||||
@ -1918,7 +1918,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
601 .loc 1 334 10 view .LVU184
|
||||
602 00ca 0020 movs r0, #0
|
||||
603 00cc 08E0 b .L28
|
||||
ARM GAS /tmp/ccwEB4d6.s page 33
|
||||
ARM GAS /tmp/cctkyfI3.s page 33
|
||||
|
||||
|
||||
604 .LVL43:
|
||||
@ -1978,7 +1978,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
649 00f0 00000000 .word SystemCoreClock
|
||||
650 00f4 83DE1B43 .word 1125899907
|
||||
651 00f8 FECFFFFF .word -12290
|
||||
ARM GAS /tmp/ccwEB4d6.s page 34
|
||||
ARM GAS /tmp/cctkyfI3.s page 34
|
||||
|
||||
|
||||
652 00fc 00230140 .word 1073816320
|
||||
@ -2038,7 +2038,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
365:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** HAL_IS_BIT_CLR(hadc->Instance->CR1, ADC_CR1_JAUTO) )
|
||||
696 .loc 1 365 57 discriminator 1 view .LVU206
|
||||
697 001c 11F4806F tst r1, #1024
|
||||
ARM GAS /tmp/ccwEB4d6.s page 35
|
||||
ARM GAS /tmp/cctkyfI3.s page 35
|
||||
|
||||
|
||||
698 0020 10D1 bne .L45
|
||||
@ -2098,7 +2098,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
738 .loc 1 393 3 view .LVU220
|
||||
393:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** }
|
||||
739 .loc 1 393 10 is_stmt 0 view .LVU221
|
||||
ARM GAS /tmp/ccwEB4d6.s page 36
|
||||
ARM GAS /tmp/cctkyfI3.s page 36
|
||||
|
||||
|
||||
740 0054 7047 bx lr
|
||||
@ -2158,7 +2158,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
408:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
789 .loc 1 408 3 view .LVU229
|
||||
408:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
ARM GAS /tmp/ccwEB4d6.s page 37
|
||||
ARM GAS /tmp/cctkyfI3.s page 37
|
||||
|
||||
|
||||
790 .loc 1 408 15 is_stmt 0 view .LVU230
|
||||
@ -2218,7 +2218,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
423:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** return HAL_TIMEOUT;
|
||||
828 .loc 1 423 11 view .LVU247
|
||||
424:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** }
|
||||
ARM GAS /tmp/ccwEB4d6.s page 38
|
||||
ARM GAS /tmp/cctkyfI3.s page 38
|
||||
|
||||
|
||||
829 .loc 1 424 11 view .LVU248
|
||||
@ -2278,7 +2278,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
869 .loc 1 445 7 view .LVU262
|
||||
870 006a 5A68 ldr r2, [r3, #4]
|
||||
444:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** (HAL_IS_BIT_CLR(hadc->Instance->CR1, ADC_CR1_JAUTO) &&
|
||||
ARM GAS /tmp/ccwEB4d6.s page 39
|
||||
ARM GAS /tmp/cctkyfI3.s page 39
|
||||
|
||||
|
||||
871 .loc 1 444 62 view .LVU263
|
||||
@ -2338,7 +2338,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
912 00a2 0020 movs r0, #0
|
||||
913 00a4 FAE7 b .L56
|
||||
914 .L62:
|
||||
ARM GAS /tmp/ccwEB4d6.s page 40
|
||||
ARM GAS /tmp/cctkyfI3.s page 40
|
||||
|
||||
|
||||
915 00a6 0020 movs r0, #0
|
||||
@ -2398,7 +2398,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
490:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** HAL_IS_BIT_CLR(hadc->Instance->CR1, ADC_CR1_JAUTO) )
|
||||
960 .loc 1 490 5 discriminator 2 view .LVU288
|
||||
961 0012 12F4807F tst r2, #256
|
||||
ARM GAS /tmp/ccwEB4d6.s page 41
|
||||
ARM GAS /tmp/cctkyfI3.s page 41
|
||||
|
||||
|
||||
962 0016 19D1 bne .L70
|
||||
@ -2458,7 +2458,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
1003 .loc 1 514 20 is_stmt 0 view .LVU301
|
||||
1004 0054 0120 movs r0, #1
|
||||
1005 .LVL71:
|
||||
ARM GAS /tmp/ccwEB4d6.s page 42
|
||||
ARM GAS /tmp/cctkyfI3.s page 42
|
||||
|
||||
|
||||
1006 .L71:
|
||||
@ -2518,7 +2518,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
537:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** __IO uint32_t tmp = 0;
|
||||
1052 .loc 1 537 1 is_stmt 0 view .LVU312
|
||||
1053 0000 82B0 sub sp, sp, #8
|
||||
ARM GAS /tmp/ccwEB4d6.s page 43
|
||||
ARM GAS /tmp/cctkyfI3.s page 43
|
||||
|
||||
|
||||
1054 .LCFI10:
|
||||
@ -2578,7 +2578,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
1094 .LCFI11:
|
||||
1095 .cfi_remember_state
|
||||
1096 .cfi_def_cfa_offset 0
|
||||
ARM GAS /tmp/ccwEB4d6.s page 44
|
||||
ARM GAS /tmp/cctkyfI3.s page 44
|
||||
|
||||
|
||||
1097 @ sp needed
|
||||
@ -2638,7 +2638,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
1137 .global HAL_ADCEx_MultiModeStart_DMA
|
||||
1138 .syntax unified
|
||||
1139 .thumb
|
||||
ARM GAS /tmp/ccwEB4d6.s page 45
|
||||
ARM GAS /tmp/cctkyfI3.s page 45
|
||||
|
||||
|
||||
1140 .thumb_func
|
||||
@ -2698,7 +2698,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
1181 .loc 1 601 11 is_stmt 0 discriminator 2 view .LVU355
|
||||
1182 001a 0268 ldr r2, [r0]
|
||||
601:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** {
|
||||
ARM GAS /tmp/ccwEB4d6.s page 46
|
||||
ARM GAS /tmp/cctkyfI3.s page 46
|
||||
|
||||
|
||||
1183 .loc 1 601 21 discriminator 2 view .LVU356
|
||||
@ -2758,7 +2758,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
1222 .loc 1 616 6 is_stmt 0 view .LVU371
|
||||
1223 004c 2068 ldr r0, [r4]
|
||||
1224 004e 8268 ldr r2, [r0, #8]
|
||||
ARM GAS /tmp/ccwEB4d6.s page 47
|
||||
ARM GAS /tmp/cctkyfI3.s page 47
|
||||
|
||||
|
||||
616:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** {
|
||||
@ -2818,7 +2818,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
1264 008c A26B ldr r2, [r4, #56]
|
||||
650:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
1265 .loc 1 650 40 view .LVU387
|
||||
ARM GAS /tmp/ccwEB4d6.s page 48
|
||||
ARM GAS /tmp/cctkyfI3.s page 48
|
||||
|
||||
|
||||
1266 008e 2348 ldr r0, .L98+12
|
||||
@ -2878,7 +2878,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
1305 .loc 1 680 5 is_stmt 0 view .LVU402
|
||||
1306 00c4 A06B ldr r0, [r4, #56]
|
||||
1307 00c6 FFF7FEFF bl HAL_DMA_Start_IT
|
||||
ARM GAS /tmp/ccwEB4d6.s page 49
|
||||
ARM GAS /tmp/cctkyfI3.s page 49
|
||||
|
||||
|
||||
1308 .LVL84:
|
||||
@ -2938,7 +2938,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
1349 0100 6364 str r3, [r4, #68]
|
||||
699:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** }
|
||||
1350 .loc 1 699 10 is_stmt 0 view .LVU416
|
||||
ARM GAS /tmp/ccwEB4d6.s page 50
|
||||
ARM GAS /tmp/cctkyfI3.s page 50
|
||||
|
||||
|
||||
1351 0102 0020 movs r0, #0
|
||||
@ -2998,7 +2998,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
1402 @ args = 0, pretend = 0, frame = 0
|
||||
1403 @ frame_needed = 0, uses_anonymous_args = 0
|
||||
710:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
ARM GAS /tmp/ccwEB4d6.s page 51
|
||||
ARM GAS /tmp/cctkyfI3.s page 51
|
||||
|
||||
|
||||
1404 .loc 1 710 3 view .LVU422
|
||||
@ -3058,7 +3058,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
1443 .loc 1 745 3 view .LVU437
|
||||
746:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
1444 .loc 1 746 1 is_stmt 0 view .LVU438
|
||||
ARM GAS /tmp/ccwEB4d6.s page 52
|
||||
ARM GAS /tmp/cctkyfI3.s page 52
|
||||
|
||||
|
||||
1445 002e 10BD pop {r4, pc}
|
||||
@ -3118,7 +3118,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
1490 .LFE148:
|
||||
1492 .section .text.HAL_ADCEx_MultiModeGetValue,"ax",%progbits
|
||||
1493 .align 1
|
||||
ARM GAS /tmp/ccwEB4d6.s page 53
|
||||
ARM GAS /tmp/cctkyfI3.s page 53
|
||||
|
||||
|
||||
1494 .global HAL_ADCEx_MultiModeGetValue
|
||||
@ -3178,7 +3178,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
1543 .LFE150:
|
||||
1545 .section .text.HAL_ADCEx_InjectedConfigChannel,"ax",%progbits
|
||||
1546 .align 1
|
||||
ARM GAS /tmp/ccwEB4d6.s page 54
|
||||
ARM GAS /tmp/cctkyfI3.s page 54
|
||||
|
||||
|
||||
1547 .global HAL_ADCEx_InjectedConfigChannel
|
||||
@ -3238,7 +3238,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
817:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** {
|
||||
1586 .loc 1 817 22 is_stmt 0 discriminator 2 view .LVU472
|
||||
1587 0012 0B68 ldr r3, [r1]
|
||||
ARM GAS /tmp/ccwEB4d6.s page 55
|
||||
ARM GAS /tmp/cctkyfI3.s page 55
|
||||
|
||||
|
||||
817:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** {
|
||||
@ -3298,7 +3298,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
1627 .loc 1 836 3 is_stmt 1 view .LVU487
|
||||
836:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
1628 .loc 1 836 7 is_stmt 0 view .LVU488
|
||||
ARM GAS /tmp/ccwEB4d6.s page 56
|
||||
ARM GAS /tmp/cctkyfI3.s page 56
|
||||
|
||||
|
||||
1629 0050 0468 ldr r4, [r0]
|
||||
@ -3358,7 +3358,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
844:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
1671 .loc 1 844 24 view .LVU501
|
||||
1672 009c 1343 orrs r3, r3, r2
|
||||
ARM GAS /tmp/ccwEB4d6.s page 57
|
||||
ARM GAS /tmp/cctkyfI3.s page 57
|
||||
|
||||
|
||||
1673 009e A363 str r3, [r4, #56]
|
||||
@ -3418,7 +3418,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
859:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** }
|
||||
1710 .loc 1 859 43 view .LVU519
|
||||
1711 00ca CC69 ldr r4, [r1, #28]
|
||||
ARM GAS /tmp/ccwEB4d6.s page 58
|
||||
ARM GAS /tmp/cctkyfI3.s page 58
|
||||
|
||||
|
||||
859:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** }
|
||||
@ -3478,7 +3478,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
1750 00f6 032B cmp r3, #3
|
||||
1751 00f8 5CD0 beq .L127
|
||||
1752 00fa 012B cmp r3, #1
|
||||
ARM GAS /tmp/ccwEB4d6.s page 59
|
||||
ARM GAS /tmp/cctkyfI3.s page 59
|
||||
|
||||
|
||||
1753 00fc 37D0 beq .L137
|
||||
@ -3538,7 +3538,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
831:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** }
|
||||
1791 .loc 1 831 27 view .LVU552
|
||||
1792 012c 2A69 ldr r2, [r5, #16]
|
||||
ARM GAS /tmp/ccwEB4d6.s page 60
|
||||
ARM GAS /tmp/cctkyfI3.s page 60
|
||||
|
||||
|
||||
831:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** }
|
||||
@ -3598,7 +3598,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
1833 0166 23F48053 bic r3, r3, #4096
|
||||
1834 016a 5360 str r3, [r2, #4]
|
||||
1835 016c C0E7 b .L125
|
||||
ARM GAS /tmp/ccwEB4d6.s page 61
|
||||
ARM GAS /tmp/cctkyfI3.s page 61
|
||||
|
||||
|
||||
1836 .L137:
|
||||
@ -3658,7 +3658,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
929:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
1874 .loc 1 929 3 view .LVU583
|
||||
1875 0192 0023 movs r3, #0
|
||||
ARM GAS /tmp/ccwEB4d6.s page 62
|
||||
ARM GAS /tmp/cctkyfI3.s page 62
|
||||
|
||||
|
||||
1876 0194 80F83C30 strb r3, [r0, #60]
|
||||
@ -3718,7 +3718,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
904:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** hadc->Instance->JOFR3 |= sConfigInjected->InjectedOffset;
|
||||
1916 .loc 1 904 11 is_stmt 0 view .LVU598
|
||||
1917 01b4 0268 ldr r2, [r0]
|
||||
ARM GAS /tmp/ccwEB4d6.s page 63
|
||||
ARM GAS /tmp/cctkyfI3.s page 63
|
||||
|
||||
|
||||
904:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** hadc->Instance->JOFR3 |= sConfigInjected->InjectedOffset;
|
||||
@ -3778,7 +3778,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
925:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** }
|
||||
1958 .loc 1 925 14 is_stmt 0 view .LVU613
|
||||
1959 01e8 064A ldr r2, .L140+12
|
||||
ARM GAS /tmp/ccwEB4d6.s page 64
|
||||
ARM GAS /tmp/cctkyfI3.s page 64
|
||||
|
||||
|
||||
1960 01ea 5368 ldr r3, [r2, #4]
|
||||
@ -3838,7 +3838,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
2008 0006 23D0 beq .L144
|
||||
944:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* Check the parameters */
|
||||
2009 .loc 1 944 1 is_stmt 0 discriminator 2 view .LVU622
|
||||
ARM GAS /tmp/ccwEB4d6.s page 65
|
||||
ARM GAS /tmp/cctkyfI3.s page 65
|
||||
|
||||
|
||||
2010 0008 10B4 push {r4}
|
||||
@ -3898,7 +3898,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
2049 .loc 1 963 24 discriminator 2 view .LVU637
|
||||
2050 003c 8968 ldr r1, [r1, #8]
|
||||
2051 .LVL106:
|
||||
ARM GAS /tmp/ccwEB4d6.s page 66
|
||||
ARM GAS /tmp/cctkyfI3.s page 66
|
||||
|
||||
|
||||
963:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||
@ -3952,52 +3952,52 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
||||
2092 .file 8 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_adc_ex.h"
|
||||
2093 .file 9 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/system_stm32f7xx.h"
|
||||
2094 .file 10 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h"
|
||||
ARM GAS /tmp/ccwEB4d6.s page 67
|
||||
ARM GAS /tmp/cctkyfI3.s page 67
|
||||
|
||||
|
||||
DEFINED SYMBOLS
|
||||
*ABS*:0000000000000000 stm32f7xx_hal_adc_ex.c
|
||||
/tmp/ccwEB4d6.s:17 .text.ADC_MultiModeDMAError:0000000000000000 $t
|
||||
/tmp/ccwEB4d6.s:24 .text.ADC_MultiModeDMAError:0000000000000000 ADC_MultiModeDMAError
|
||||
/tmp/ccwEB4d6.s:60 .text.ADC_MultiModeDMAHalfConvCplt:0000000000000000 $t
|
||||
/tmp/ccwEB4d6.s:66 .text.ADC_MultiModeDMAHalfConvCplt:0000000000000000 ADC_MultiModeDMAHalfConvCplt
|
||||
/tmp/ccwEB4d6.s:93 .text.ADC_MultiModeDMAConvCplt:0000000000000000 $t
|
||||
/tmp/ccwEB4d6.s:99 .text.ADC_MultiModeDMAConvCplt:0000000000000000 ADC_MultiModeDMAConvCplt
|
||||
/tmp/ccwEB4d6.s:193 .text.HAL_ADCEx_InjectedStart:0000000000000000 $t
|
||||
/tmp/ccwEB4d6.s:200 .text.HAL_ADCEx_InjectedStart:0000000000000000 HAL_ADCEx_InjectedStart
|
||||
/tmp/ccwEB4d6.s:414 .text.HAL_ADCEx_InjectedStart:00000000000000e8 $d
|
||||
/tmp/ccwEB4d6.s:423 .text.HAL_ADCEx_InjectedStart_IT:0000000000000000 $t
|
||||
/tmp/ccwEB4d6.s:430 .text.HAL_ADCEx_InjectedStart_IT:0000000000000000 HAL_ADCEx_InjectedStart_IT
|
||||
/tmp/ccwEB4d6.s:649 .text.HAL_ADCEx_InjectedStart_IT:00000000000000f0 $d
|
||||
/tmp/ccwEB4d6.s:658 .text.HAL_ADCEx_InjectedStop:0000000000000000 $t
|
||||
/tmp/ccwEB4d6.s:665 .text.HAL_ADCEx_InjectedStop:0000000000000000 HAL_ADCEx_InjectedStop
|
||||
/tmp/ccwEB4d6.s:758 .text.HAL_ADCEx_InjectedStop:0000000000000060 $d
|
||||
/tmp/ccwEB4d6.s:763 .text.HAL_ADCEx_InjectedPollForConversion:0000000000000000 $t
|
||||
/tmp/ccwEB4d6.s:770 .text.HAL_ADCEx_InjectedPollForConversion:0000000000000000 HAL_ADCEx_InjectedPollForConversion
|
||||
/tmp/ccwEB4d6.s:928 .text.HAL_ADCEx_InjectedStop_IT:0000000000000000 $t
|
||||
/tmp/ccwEB4d6.s:935 .text.HAL_ADCEx_InjectedStop_IT:0000000000000000 HAL_ADCEx_InjectedStop_IT
|
||||
/tmp/ccwEB4d6.s:1032 .text.HAL_ADCEx_InjectedStop_IT:0000000000000068 $d
|
||||
/tmp/ccwEB4d6.s:1037 .text.HAL_ADCEx_InjectedGetValue:0000000000000000 $t
|
||||
/tmp/ccwEB4d6.s:1044 .text.HAL_ADCEx_InjectedGetValue:0000000000000000 HAL_ADCEx_InjectedGetValue
|
||||
/tmp/ccwEB4d6.s:1073 .text.HAL_ADCEx_InjectedGetValue:0000000000000018 $d
|
||||
/tmp/ccwEB4d6.s:1077 .text.HAL_ADCEx_InjectedGetValue:000000000000001c $t
|
||||
/tmp/ccwEB4d6.s:1136 .text.HAL_ADCEx_MultiModeStart_DMA:0000000000000000 $t
|
||||
/tmp/ccwEB4d6.s:1143 .text.HAL_ADCEx_MultiModeStart_DMA:0000000000000000 HAL_ADCEx_MultiModeStart_DMA
|
||||
/tmp/ccwEB4d6.s:1378 .text.HAL_ADCEx_MultiModeStart_DMA:0000000000000110 $d
|
||||
/tmp/ccwEB4d6.s:1390 .text.HAL_ADCEx_MultiModeStop_DMA:0000000000000000 $t
|
||||
/tmp/ccwEB4d6.s:1397 .text.HAL_ADCEx_MultiModeStop_DMA:0000000000000000 HAL_ADCEx_MultiModeStop_DMA
|
||||
/tmp/ccwEB4d6.s:1487 .text.HAL_ADCEx_MultiModeStop_DMA:000000000000005c $d
|
||||
/tmp/ccwEB4d6.s:1493 .text.HAL_ADCEx_MultiModeGetValue:0000000000000000 $t
|
||||
/tmp/ccwEB4d6.s:1500 .text.HAL_ADCEx_MultiModeGetValue:0000000000000000 HAL_ADCEx_MultiModeGetValue
|
||||
/tmp/ccwEB4d6.s:1519 .text.HAL_ADCEx_MultiModeGetValue:0000000000000008 $d
|
||||
/tmp/ccwEB4d6.s:1524 .text.HAL_ADCEx_InjectedConvCpltCallback:0000000000000000 $t
|
||||
/tmp/ccwEB4d6.s:1531 .text.HAL_ADCEx_InjectedConvCpltCallback:0000000000000000 HAL_ADCEx_InjectedConvCpltCallback
|
||||
/tmp/ccwEB4d6.s:1546 .text.HAL_ADCEx_InjectedConfigChannel:0000000000000000 $t
|
||||
/tmp/ccwEB4d6.s:1553 .text.HAL_ADCEx_InjectedConfigChannel:0000000000000000 HAL_ADCEx_InjectedConfigChannel
|
||||
/tmp/ccwEB4d6.s:1977 .text.HAL_ADCEx_InjectedConfigChannel:00000000000001f8 $d
|
||||
/tmp/ccwEB4d6.s:1986 .text.HAL_ADCEx_MultiModeConfigChannel:0000000000000000 $t
|
||||
/tmp/ccwEB4d6.s:1993 .text.HAL_ADCEx_MultiModeConfigChannel:0000000000000000 HAL_ADCEx_MultiModeConfigChannel
|
||||
/tmp/ccwEB4d6.s:2080 .text.HAL_ADCEx_MultiModeConfigChannel:0000000000000054 $d
|
||||
/tmp/cctkyfI3.s:17 .text.ADC_MultiModeDMAError:0000000000000000 $t
|
||||
/tmp/cctkyfI3.s:24 .text.ADC_MultiModeDMAError:0000000000000000 ADC_MultiModeDMAError
|
||||
/tmp/cctkyfI3.s:60 .text.ADC_MultiModeDMAHalfConvCplt:0000000000000000 $t
|
||||
/tmp/cctkyfI3.s:66 .text.ADC_MultiModeDMAHalfConvCplt:0000000000000000 ADC_MultiModeDMAHalfConvCplt
|
||||
/tmp/cctkyfI3.s:93 .text.ADC_MultiModeDMAConvCplt:0000000000000000 $t
|
||||
/tmp/cctkyfI3.s:99 .text.ADC_MultiModeDMAConvCplt:0000000000000000 ADC_MultiModeDMAConvCplt
|
||||
/tmp/cctkyfI3.s:193 .text.HAL_ADCEx_InjectedStart:0000000000000000 $t
|
||||
/tmp/cctkyfI3.s:200 .text.HAL_ADCEx_InjectedStart:0000000000000000 HAL_ADCEx_InjectedStart
|
||||
/tmp/cctkyfI3.s:414 .text.HAL_ADCEx_InjectedStart:00000000000000e8 $d
|
||||
/tmp/cctkyfI3.s:423 .text.HAL_ADCEx_InjectedStart_IT:0000000000000000 $t
|
||||
/tmp/cctkyfI3.s:430 .text.HAL_ADCEx_InjectedStart_IT:0000000000000000 HAL_ADCEx_InjectedStart_IT
|
||||
/tmp/cctkyfI3.s:649 .text.HAL_ADCEx_InjectedStart_IT:00000000000000f0 $d
|
||||
/tmp/cctkyfI3.s:658 .text.HAL_ADCEx_InjectedStop:0000000000000000 $t
|
||||
/tmp/cctkyfI3.s:665 .text.HAL_ADCEx_InjectedStop:0000000000000000 HAL_ADCEx_InjectedStop
|
||||
/tmp/cctkyfI3.s:758 .text.HAL_ADCEx_InjectedStop:0000000000000060 $d
|
||||
/tmp/cctkyfI3.s:763 .text.HAL_ADCEx_InjectedPollForConversion:0000000000000000 $t
|
||||
/tmp/cctkyfI3.s:770 .text.HAL_ADCEx_InjectedPollForConversion:0000000000000000 HAL_ADCEx_InjectedPollForConversion
|
||||
/tmp/cctkyfI3.s:928 .text.HAL_ADCEx_InjectedStop_IT:0000000000000000 $t
|
||||
/tmp/cctkyfI3.s:935 .text.HAL_ADCEx_InjectedStop_IT:0000000000000000 HAL_ADCEx_InjectedStop_IT
|
||||
/tmp/cctkyfI3.s:1032 .text.HAL_ADCEx_InjectedStop_IT:0000000000000068 $d
|
||||
/tmp/cctkyfI3.s:1037 .text.HAL_ADCEx_InjectedGetValue:0000000000000000 $t
|
||||
/tmp/cctkyfI3.s:1044 .text.HAL_ADCEx_InjectedGetValue:0000000000000000 HAL_ADCEx_InjectedGetValue
|
||||
/tmp/cctkyfI3.s:1073 .text.HAL_ADCEx_InjectedGetValue:0000000000000018 $d
|
||||
/tmp/cctkyfI3.s:1077 .text.HAL_ADCEx_InjectedGetValue:000000000000001c $t
|
||||
/tmp/cctkyfI3.s:1136 .text.HAL_ADCEx_MultiModeStart_DMA:0000000000000000 $t
|
||||
/tmp/cctkyfI3.s:1143 .text.HAL_ADCEx_MultiModeStart_DMA:0000000000000000 HAL_ADCEx_MultiModeStart_DMA
|
||||
/tmp/cctkyfI3.s:1378 .text.HAL_ADCEx_MultiModeStart_DMA:0000000000000110 $d
|
||||
/tmp/cctkyfI3.s:1390 .text.HAL_ADCEx_MultiModeStop_DMA:0000000000000000 $t
|
||||
/tmp/cctkyfI3.s:1397 .text.HAL_ADCEx_MultiModeStop_DMA:0000000000000000 HAL_ADCEx_MultiModeStop_DMA
|
||||
/tmp/cctkyfI3.s:1487 .text.HAL_ADCEx_MultiModeStop_DMA:000000000000005c $d
|
||||
/tmp/cctkyfI3.s:1493 .text.HAL_ADCEx_MultiModeGetValue:0000000000000000 $t
|
||||
/tmp/cctkyfI3.s:1500 .text.HAL_ADCEx_MultiModeGetValue:0000000000000000 HAL_ADCEx_MultiModeGetValue
|
||||
/tmp/cctkyfI3.s:1519 .text.HAL_ADCEx_MultiModeGetValue:0000000000000008 $d
|
||||
/tmp/cctkyfI3.s:1524 .text.HAL_ADCEx_InjectedConvCpltCallback:0000000000000000 $t
|
||||
/tmp/cctkyfI3.s:1531 .text.HAL_ADCEx_InjectedConvCpltCallback:0000000000000000 HAL_ADCEx_InjectedConvCpltCallback
|
||||
/tmp/cctkyfI3.s:1546 .text.HAL_ADCEx_InjectedConfigChannel:0000000000000000 $t
|
||||
/tmp/cctkyfI3.s:1553 .text.HAL_ADCEx_InjectedConfigChannel:0000000000000000 HAL_ADCEx_InjectedConfigChannel
|
||||
/tmp/cctkyfI3.s:1977 .text.HAL_ADCEx_InjectedConfigChannel:00000000000001f8 $d
|
||||
/tmp/cctkyfI3.s:1986 .text.HAL_ADCEx_MultiModeConfigChannel:0000000000000000 $t
|
||||
/tmp/cctkyfI3.s:1993 .text.HAL_ADCEx_MultiModeConfigChannel:0000000000000000 HAL_ADCEx_MultiModeConfigChannel
|
||||
/tmp/cctkyfI3.s:2080 .text.HAL_ADCEx_MultiModeConfigChannel:0000000000000054 $d
|
||||
|
||||
UNDEFINED SYMBOLS
|
||||
HAL_ADC_ErrorCallback
|
||||
|
||||
Reference in New Issue
Block a user