solved laser current setup timing issue
This commit is contained in:
12
Src/main.c
12
Src/main.c
@ -371,7 +371,7 @@ int main(void)
|
|||||||
Set_LTEC(TT_CHANGE_TEMP_2, temp16);//Drive Laser TEC 2
|
Set_LTEC(TT_CHANGE_TEMP_2, temp16);//Drive Laser TEC 2
|
||||||
|
|
||||||
// Toggle pin for oscilloscope
|
// Toggle pin for oscilloscope
|
||||||
HAL_GPIO_WritePin(GPIOD, GPIO_PIN_7, GPIO_PIN_SET);
|
HAL_GPIO_WritePin(GPIOD, GPIO_PIN_7, GPIO_PIN_SET); //start of the whole frequency sweep procedure
|
||||||
HAL_GPIO_WritePin(GPIOD, GPIO_PIN_7, GPIO_PIN_RESET);
|
HAL_GPIO_WritePin(GPIOD, GPIO_PIN_7, GPIO_PIN_RESET);
|
||||||
|
|
||||||
st = HAL_TIM_Base_Start_IT(&htim10);
|
st = HAL_TIM_Base_Start_IT(&htim10);
|
||||||
@ -393,8 +393,8 @@ int main(void)
|
|||||||
TO10 = 0;
|
TO10 = 0;
|
||||||
TIM10_coflag = 0;
|
TIM10_coflag = 0;
|
||||||
|
|
||||||
//HAL_GPIO_WritePin(GPIOD, GPIO_PIN_7, GPIO_PIN_SET);
|
HAL_GPIO_WritePin(GPIOG, GPIO_PIN_9, GPIO_PIN_SET); // set the current step laser current trigger
|
||||||
//HAL_GPIO_WritePin(GPIOD, GPIO_PIN_7, GPIO_PIN_RESET);
|
HAL_GPIO_WritePin(GPIOG, GPIO_PIN_9, GPIO_PIN_RESET);
|
||||||
//*
|
//*
|
||||||
if (step_counter % trigger_step == 0){ //trigger at every 60 step
|
if (step_counter % trigger_step == 0){ //trigger at every 60 step
|
||||||
OUT_trigger(trigger_counter);
|
OUT_trigger(trigger_counter);
|
||||||
@ -402,7 +402,7 @@ int main(void)
|
|||||||
}
|
}
|
||||||
++step_counter;
|
++step_counter;
|
||||||
//*/
|
//*/
|
||||||
//*
|
/*
|
||||||
++task_sheduler;
|
++task_sheduler;
|
||||||
if (task_sheduler >= 10){
|
if (task_sheduler >= 10){
|
||||||
task_sheduler = 0;
|
task_sheduler = 0;
|
||||||
@ -622,7 +622,7 @@ int main(void)
|
|||||||
if (task.tau > 3)
|
if (task.tau > 3)
|
||||||
{
|
{
|
||||||
htim10.Init.Period = TIM10_period;
|
htim10.Init.Period = TIM10_period;
|
||||||
TO10_counter = task.dt / 10 - 1;
|
TO10_counter = task.dt / 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
CPU_state_old = RUN_TASK;
|
CPU_state_old = RUN_TASK;
|
||||||
@ -2077,7 +2077,7 @@ static void Decode_task(uint16_t *Command, LDx_SetupTypeDef *LD1_curr_setup, LDx
|
|||||||
task.p_coef_2 = (float)(*temp2) * 256.0; temp2++;
|
task.p_coef_2 = (float)(*temp2) * 256.0; temp2++;
|
||||||
task.i_coef_2 = (float)(*temp2) * 256.0; temp2++;
|
task.i_coef_2 = (float)(*temp2) * 256.0; temp2++;
|
||||||
|
|
||||||
TO10_counter = task.dt / 10 - 1;
|
TO10_counter = task.dt / 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
void OUT_trigger(uint8_t out_n)
|
void OUT_trigger(uint8_t out_n)
|
||||||
|
|||||||
@ -228,6 +228,8 @@ void ADC_IRQHandler(void)
|
|||||||
void TIM1_UP_TIM10_IRQHandler(void)
|
void TIM1_UP_TIM10_IRQHandler(void)
|
||||||
{
|
{
|
||||||
/* USER CODE BEGIN TIM1_UP_TIM10_IRQn 0 */
|
/* USER CODE BEGIN TIM1_UP_TIM10_IRQn 0 */
|
||||||
|
//HAL_GPIO_WritePin(GPIOG, GPIO_PIN_9, GPIO_PIN_SET); // set the current step laser current trigger
|
||||||
|
//HAL_GPIO_WritePin(GPIOG, GPIO_PIN_9, GPIO_PIN_RESET);
|
||||||
TO10++;
|
TO10++;
|
||||||
if (TO10 == TO10_counter)
|
if (TO10 == TO10_counter)
|
||||||
TIM10_coflag = 1;
|
TIM10_coflag = 1;
|
||||||
|
|||||||
2567
build/For_stm32.map
2567
build/For_stm32.map
File diff suppressed because it is too large
Load Diff
@ -29,6 +29,8 @@ build/bsp_driver_sd.o: Src/bsp_driver_sd.c Inc/bsp_driver_sd.h \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h \
|
||||||
Inc/fatfs_platform.h
|
Inc/fatfs_platform.h
|
||||||
Inc/bsp_driver_sd.h:
|
Inc/bsp_driver_sd.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
||||||
@ -63,4 +65,6 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
Inc/fatfs_platform.h:
|
Inc/fatfs_platform.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/cckaKWgV.s page 1
|
ARM GAS /tmp/ccLisECN.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/cckaKWgV.s page 1
|
|||||||
29:Src/bsp_driver_sd.c **** /* USER CODE END 0 */
|
29:Src/bsp_driver_sd.c **** /* USER CODE END 0 */
|
||||||
30:Src/bsp_driver_sd.c **** #else
|
30:Src/bsp_driver_sd.c **** #else
|
||||||
31:Src/bsp_driver_sd.c **** /* USER CODE BEGIN FirstSection */
|
31:Src/bsp_driver_sd.c **** /* USER CODE BEGIN FirstSection */
|
||||||
ARM GAS /tmp/cckaKWgV.s page 2
|
ARM GAS /tmp/ccLisECN.s page 2
|
||||||
|
|
||||||
|
|
||||||
32:Src/bsp_driver_sd.c **** /* can be used to modify / undefine following code or add new definitions */
|
32:Src/bsp_driver_sd.c **** /* can be used to modify / undefine following code or add new definitions */
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/cckaKWgV.s page 1
|
|||||||
81:Src/bsp_driver_sd.c **** /* Code to be updated by the user or replaced by one from the FW pack (in a stmxxxx_sd.c file) */
|
81:Src/bsp_driver_sd.c **** /* Code to be updated by the user or replaced by one from the FW pack (in a stmxxxx_sd.c file) */
|
||||||
82:Src/bsp_driver_sd.c ****
|
82:Src/bsp_driver_sd.c ****
|
||||||
83:Src/bsp_driver_sd.c **** return (uint8_t)0;
|
83:Src/bsp_driver_sd.c **** return (uint8_t)0;
|
||||||
ARM GAS /tmp/cckaKWgV.s page 3
|
ARM GAS /tmp/ccLisECN.s page 3
|
||||||
|
|
||||||
|
|
||||||
33 .loc 1 83 3 view .LVU1
|
33 .loc 1 83 3 view .LVU1
|
||||||
@ -178,7 +178,7 @@ ARM GAS /tmp/cckaKWgV.s page 1
|
|||||||
69 .LVL2:
|
69 .LVL2:
|
||||||
70 .loc 1 103 7 view .LVU8
|
70 .loc 1 103 7 view .LVU8
|
||||||
71 0008 0A46 mov r2, r1
|
71 0008 0A46 mov r2, r1
|
||||||
ARM GAS /tmp/cckaKWgV.s page 4
|
ARM GAS /tmp/ccLisECN.s page 4
|
||||||
|
|
||||||
|
|
||||||
72 .LVL3:
|
72 .LVL3:
|
||||||
@ -238,7 +238,7 @@ ARM GAS /tmp/cckaKWgV.s page 1
|
|||||||
119:Src/bsp_driver_sd.c **** * @param Timeout: Timeout for write operation
|
119:Src/bsp_driver_sd.c **** * @param Timeout: Timeout for write operation
|
||||||
120:Src/bsp_driver_sd.c **** * @retval SD status
|
120:Src/bsp_driver_sd.c **** * @retval SD status
|
||||||
121:Src/bsp_driver_sd.c **** */
|
121:Src/bsp_driver_sd.c **** */
|
||||||
ARM GAS /tmp/cckaKWgV.s page 5
|
ARM GAS /tmp/ccLisECN.s page 5
|
||||||
|
|
||||||
|
|
||||||
122:Src/bsp_driver_sd.c **** __weak uint8_t BSP_SD_WriteBlocks(uint32_t *pData, uint32_t WriteAddr, uint32_t NumOfBlocks, uint32
|
122:Src/bsp_driver_sd.c **** __weak uint8_t BSP_SD_WriteBlocks(uint32_t *pData, uint32_t WriteAddr, uint32_t NumOfBlocks, uint32
|
||||||
@ -298,7 +298,7 @@ ARM GAS /tmp/cckaKWgV.s page 1
|
|||||||
156 0018 5DF804FB ldr pc, [sp], #4
|
156 0018 5DF804FB ldr pc, [sp], #4
|
||||||
157 .L13:
|
157 .L13:
|
||||||
158 .align 2
|
158 .align 2
|
||||||
ARM GAS /tmp/cckaKWgV.s page 6
|
ARM GAS /tmp/ccLisECN.s page 6
|
||||||
|
|
||||||
|
|
||||||
159 .L12:
|
159 .L12:
|
||||||
@ -358,7 +358,7 @@ ARM GAS /tmp/cckaKWgV.s page 1
|
|||||||
198 .loc 1 149 7 view .LVU36
|
198 .loc 1 149 7 view .LVU36
|
||||||
199 000a FFF7FEFF bl HAL_SD_ReadBlocks_DMA
|
199 000a FFF7FEFF bl HAL_SD_ReadBlocks_DMA
|
||||||
200 .LVL21:
|
200 .LVL21:
|
||||||
ARM GAS /tmp/cckaKWgV.s page 7
|
ARM GAS /tmp/ccLisECN.s page 7
|
||||||
|
|
||||||
|
|
||||||
201 .loc 1 149 6 view .LVU37
|
201 .loc 1 149 6 view .LVU37
|
||||||
@ -418,7 +418,7 @@ ARM GAS /tmp/cckaKWgV.s page 1
|
|||||||
238 0002 1346 mov r3, r2
|
238 0002 1346 mov r3, r2
|
||||||
169:Src/bsp_driver_sd.c **** uint8_t sd_state = MSD_OK;
|
169:Src/bsp_driver_sd.c **** uint8_t sd_state = MSD_OK;
|
||||||
239 .loc 1 169 3 is_stmt 1 view .LVU43
|
239 .loc 1 169 3 is_stmt 1 view .LVU43
|
||||||
ARM GAS /tmp/cckaKWgV.s page 8
|
ARM GAS /tmp/ccLisECN.s page 8
|
||||||
|
|
||||||
|
|
||||||
240 .LVL24:
|
240 .LVL24:
|
||||||
@ -478,7 +478,7 @@ ARM GAS /tmp/cckaKWgV.s page 1
|
|||||||
185:Src/bsp_driver_sd.c **** * @param StartAddr: Start byte address
|
185:Src/bsp_driver_sd.c **** * @param StartAddr: Start byte address
|
||||||
186:Src/bsp_driver_sd.c **** * @param EndAddr: End byte address
|
186:Src/bsp_driver_sd.c **** * @param EndAddr: End byte address
|
||||||
187:Src/bsp_driver_sd.c **** * @retval SD status
|
187:Src/bsp_driver_sd.c **** * @retval SD status
|
||||||
ARM GAS /tmp/cckaKWgV.s page 9
|
ARM GAS /tmp/ccLisECN.s page 9
|
||||||
|
|
||||||
|
|
||||||
188:Src/bsp_driver_sd.c **** */
|
188:Src/bsp_driver_sd.c **** */
|
||||||
@ -538,7 +538,7 @@ ARM GAS /tmp/cckaKWgV.s page 1
|
|||||||
324 .thumb
|
324 .thumb
|
||||||
325 .thumb_func
|
325 .thumb_func
|
||||||
326 .fpu fpv5-d16
|
326 .fpu fpv5-d16
|
||||||
ARM GAS /tmp/cckaKWgV.s page 10
|
ARM GAS /tmp/ccLisECN.s page 10
|
||||||
|
|
||||||
|
|
||||||
328 BSP_SD_GetCardState:
|
328 BSP_SD_GetCardState:
|
||||||
@ -598,7 +598,7 @@ ARM GAS /tmp/cckaKWgV.s page 1
|
|||||||
217:Src/bsp_driver_sd.c ****
|
217:Src/bsp_driver_sd.c ****
|
||||||
218:Src/bsp_driver_sd.c **** /**
|
218:Src/bsp_driver_sd.c **** /**
|
||||||
219:Src/bsp_driver_sd.c **** * @brief Get SD information about specific SD card.
|
219:Src/bsp_driver_sd.c **** * @brief Get SD information about specific SD card.
|
||||||
ARM GAS /tmp/cckaKWgV.s page 11
|
ARM GAS /tmp/ccLisECN.s page 11
|
||||||
|
|
||||||
|
|
||||||
220:Src/bsp_driver_sd.c **** * @param CardInfo: Pointer to HAL_SD_CardInfoTypedef structure
|
220:Src/bsp_driver_sd.c **** * @param CardInfo: Pointer to HAL_SD_CardInfoTypedef structure
|
||||||
@ -658,7 +658,7 @@ ARM GAS /tmp/cckaKWgV.s page 1
|
|||||||
240:Src/bsp_driver_sd.c **** }
|
240:Src/bsp_driver_sd.c **** }
|
||||||
241:Src/bsp_driver_sd.c ****
|
241:Src/bsp_driver_sd.c ****
|
||||||
242:Src/bsp_driver_sd.c **** /**
|
242:Src/bsp_driver_sd.c **** /**
|
||||||
ARM GAS /tmp/cckaKWgV.s page 12
|
ARM GAS /tmp/ccLisECN.s page 12
|
||||||
|
|
||||||
|
|
||||||
243:Src/bsp_driver_sd.c **** * @brief Tx Transfer completed callback
|
243:Src/bsp_driver_sd.c **** * @brief Tx Transfer completed callback
|
||||||
@ -718,7 +718,7 @@ ARM GAS /tmp/cckaKWgV.s page 1
|
|||||||
428 .loc 1 238 1 is_stmt 0 view .LVU76
|
428 .loc 1 238 1 is_stmt 0 view .LVU76
|
||||||
429 0000 08B5 push {r3, lr}
|
429 0000 08B5 push {r3, lr}
|
||||||
430 .LCFI11:
|
430 .LCFI11:
|
||||||
ARM GAS /tmp/cckaKWgV.s page 13
|
ARM GAS /tmp/ccLisECN.s page 13
|
||||||
|
|
||||||
|
|
||||||
431 .cfi_def_cfa_offset 8
|
431 .cfi_def_cfa_offset 8
|
||||||
@ -778,7 +778,7 @@ ARM GAS /tmp/cckaKWgV.s page 1
|
|||||||
476 @ frame_needed = 0, uses_anonymous_args = 0
|
476 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
248:Src/bsp_driver_sd.c **** BSP_SD_WriteCpltCallback();
|
248:Src/bsp_driver_sd.c **** BSP_SD_WriteCpltCallback();
|
||||||
477 .loc 1 248 1 is_stmt 0 view .LVU82
|
477 .loc 1 248 1 is_stmt 0 view .LVU82
|
||||||
ARM GAS /tmp/cckaKWgV.s page 14
|
ARM GAS /tmp/ccLisECN.s page 14
|
||||||
|
|
||||||
|
|
||||||
478 0000 08B5 push {r3, lr}
|
478 0000 08B5 push {r3, lr}
|
||||||
@ -838,7 +838,7 @@ ARM GAS /tmp/cckaKWgV.s page 1
|
|||||||
523 .cfi_startproc
|
523 .cfi_startproc
|
||||||
524 @ args = 0, pretend = 0, frame = 0
|
524 @ args = 0, pretend = 0, frame = 0
|
||||||
525 @ frame_needed = 0, uses_anonymous_args = 0
|
525 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
ARM GAS /tmp/cckaKWgV.s page 15
|
ARM GAS /tmp/ccLisECN.s page 15
|
||||||
|
|
||||||
|
|
||||||
258:Src/bsp_driver_sd.c **** BSP_SD_ReadCpltCallback();
|
258:Src/bsp_driver_sd.c **** BSP_SD_ReadCpltCallback();
|
||||||
@ -898,7 +898,7 @@ ARM GAS /tmp/cckaKWgV.s page 1
|
|||||||
566 .loc 1 304 7 is_stmt 0 view .LVU95
|
566 .loc 1 304 7 is_stmt 0 view .LVU95
|
||||||
567 000a FFF7FEFF bl BSP_PlatformIsDetected
|
567 000a FFF7FEFF bl BSP_PlatformIsDetected
|
||||||
568 .LVL46:
|
568 .LVL46:
|
||||||
ARM GAS /tmp/cckaKWgV.s page 16
|
ARM GAS /tmp/ccLisECN.s page 16
|
||||||
|
|
||||||
|
|
||||||
569 .loc 1 304 6 view .LVU96
|
569 .loc 1 304 6 view .LVU96
|
||||||
@ -958,7 +958,7 @@ ARM GAS /tmp/cckaKWgV.s page 1
|
|||||||
52:Src/bsp_driver_sd.c **** {
|
52:Src/bsp_driver_sd.c **** {
|
||||||
615 .loc 1 52 6 view .LVU106
|
615 .loc 1 52 6 view .LVU106
|
||||||
616 0006 0128 cmp r0, #1
|
616 0006 0128 cmp r0, #1
|
||||||
ARM GAS /tmp/cckaKWgV.s page 17
|
ARM GAS /tmp/ccLisECN.s page 17
|
||||||
|
|
||||||
|
|
||||||
617 0008 02D0 beq .L57
|
617 0008 02D0 beq .L57
|
||||||
@ -1018,7 +1018,7 @@ ARM GAS /tmp/cckaKWgV.s page 1
|
|||||||
660 .text
|
660 .text
|
||||||
661 .Letext0:
|
661 .Letext0:
|
||||||
662 .file 2 "/usr/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h"
|
662 .file 2 "/usr/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h"
|
||||||
ARM GAS /tmp/cckaKWgV.s page 18
|
ARM GAS /tmp/ccLisECN.s page 18
|
||||||
|
|
||||||
|
|
||||||
663 .file 3 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f767xx.h"
|
663 .file 3 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f767xx.h"
|
||||||
@ -1027,51 +1027,51 @@ ARM GAS /tmp/cckaKWgV.s page 1
|
|||||||
666 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h"
|
666 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h"
|
||||||
667 .file 7 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h"
|
667 .file 7 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h"
|
||||||
668 .file 8 "Inc/fatfs_platform.h"
|
668 .file 8 "Inc/fatfs_platform.h"
|
||||||
ARM GAS /tmp/cckaKWgV.s page 19
|
ARM GAS /tmp/ccLisECN.s page 19
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 bsp_driver_sd.c
|
*ABS*:0000000000000000 bsp_driver_sd.c
|
||||||
/tmp/cckaKWgV.s:17 .text.BSP_SD_ITConfig:0000000000000000 $t
|
/tmp/ccLisECN.s:17 .text.BSP_SD_ITConfig:0000000000000000 $t
|
||||||
/tmp/cckaKWgV.s:25 .text.BSP_SD_ITConfig:0000000000000000 BSP_SD_ITConfig
|
/tmp/ccLisECN.s:25 .text.BSP_SD_ITConfig:0000000000000000 BSP_SD_ITConfig
|
||||||
/tmp/cckaKWgV.s:41 .text.BSP_SD_ReadBlocks:0000000000000000 $t
|
/tmp/ccLisECN.s:41 .text.BSP_SD_ReadBlocks:0000000000000000 $t
|
||||||
/tmp/cckaKWgV.s:48 .text.BSP_SD_ReadBlocks:0000000000000000 BSP_SD_ReadBlocks
|
/tmp/ccLisECN.s:48 .text.BSP_SD_ReadBlocks:0000000000000000 BSP_SD_ReadBlocks
|
||||||
/tmp/cckaKWgV.s:98 .text.BSP_SD_ReadBlocks:000000000000001c $d
|
/tmp/ccLisECN.s:98 .text.BSP_SD_ReadBlocks:000000000000001c $d
|
||||||
/tmp/cckaKWgV.s:103 .text.BSP_SD_WriteBlocks:0000000000000000 $t
|
/tmp/ccLisECN.s:103 .text.BSP_SD_WriteBlocks:0000000000000000 $t
|
||||||
/tmp/cckaKWgV.s:110 .text.BSP_SD_WriteBlocks:0000000000000000 BSP_SD_WriteBlocks
|
/tmp/ccLisECN.s:110 .text.BSP_SD_WriteBlocks:0000000000000000 BSP_SD_WriteBlocks
|
||||||
/tmp/cckaKWgV.s:160 .text.BSP_SD_WriteBlocks:000000000000001c $d
|
/tmp/ccLisECN.s:160 .text.BSP_SD_WriteBlocks:000000000000001c $d
|
||||||
/tmp/cckaKWgV.s:165 .text.BSP_SD_ReadBlocks_DMA:0000000000000000 $t
|
/tmp/ccLisECN.s:165 .text.BSP_SD_ReadBlocks_DMA:0000000000000000 $t
|
||||||
/tmp/cckaKWgV.s:172 .text.BSP_SD_ReadBlocks_DMA:0000000000000000 BSP_SD_ReadBlocks_DMA
|
/tmp/ccLisECN.s:172 .text.BSP_SD_ReadBlocks_DMA:0000000000000000 BSP_SD_ReadBlocks_DMA
|
||||||
/tmp/cckaKWgV.s:213 .text.BSP_SD_ReadBlocks_DMA:0000000000000014 $d
|
/tmp/ccLisECN.s:213 .text.BSP_SD_ReadBlocks_DMA:0000000000000014 $d
|
||||||
/tmp/cckaKWgV.s:218 .text.BSP_SD_WriteBlocks_DMA:0000000000000000 $t
|
/tmp/ccLisECN.s:218 .text.BSP_SD_WriteBlocks_DMA:0000000000000000 $t
|
||||||
/tmp/cckaKWgV.s:225 .text.BSP_SD_WriteBlocks_DMA:0000000000000000 BSP_SD_WriteBlocks_DMA
|
/tmp/ccLisECN.s:225 .text.BSP_SD_WriteBlocks_DMA:0000000000000000 BSP_SD_WriteBlocks_DMA
|
||||||
/tmp/cckaKWgV.s:266 .text.BSP_SD_WriteBlocks_DMA:0000000000000014 $d
|
/tmp/ccLisECN.s:266 .text.BSP_SD_WriteBlocks_DMA:0000000000000014 $d
|
||||||
/tmp/cckaKWgV.s:271 .text.BSP_SD_Erase:0000000000000000 $t
|
/tmp/ccLisECN.s:271 .text.BSP_SD_Erase:0000000000000000 $t
|
||||||
/tmp/cckaKWgV.s:278 .text.BSP_SD_Erase:0000000000000000 BSP_SD_Erase
|
/tmp/ccLisECN.s:278 .text.BSP_SD_Erase:0000000000000000 BSP_SD_Erase
|
||||||
/tmp/cckaKWgV.s:316 .text.BSP_SD_Erase:0000000000000014 $d
|
/tmp/ccLisECN.s:316 .text.BSP_SD_Erase:0000000000000014 $d
|
||||||
/tmp/cckaKWgV.s:321 .text.BSP_SD_GetCardState:0000000000000000 $t
|
/tmp/ccLisECN.s:321 .text.BSP_SD_GetCardState:0000000000000000 $t
|
||||||
/tmp/cckaKWgV.s:328 .text.BSP_SD_GetCardState:0000000000000000 BSP_SD_GetCardState
|
/tmp/ccLisECN.s:328 .text.BSP_SD_GetCardState:0000000000000000 BSP_SD_GetCardState
|
||||||
/tmp/cckaKWgV.s:352 .text.BSP_SD_GetCardState:0000000000000010 $d
|
/tmp/ccLisECN.s:352 .text.BSP_SD_GetCardState:0000000000000010 $d
|
||||||
/tmp/cckaKWgV.s:357 .text.BSP_SD_GetCardInfo:0000000000000000 $t
|
/tmp/ccLisECN.s:357 .text.BSP_SD_GetCardInfo:0000000000000000 $t
|
||||||
/tmp/cckaKWgV.s:364 .text.BSP_SD_GetCardInfo:0000000000000000 BSP_SD_GetCardInfo
|
/tmp/ccLisECN.s:364 .text.BSP_SD_GetCardInfo:0000000000000000 BSP_SD_GetCardInfo
|
||||||
/tmp/cckaKWgV.s:389 .text.BSP_SD_GetCardInfo:000000000000000c $d
|
/tmp/ccLisECN.s:389 .text.BSP_SD_GetCardInfo:000000000000000c $d
|
||||||
/tmp/cckaKWgV.s:394 .text.BSP_SD_AbortCallback:0000000000000000 $t
|
/tmp/ccLisECN.s:394 .text.BSP_SD_AbortCallback:0000000000000000 $t
|
||||||
/tmp/cckaKWgV.s:401 .text.BSP_SD_AbortCallback:0000000000000000 BSP_SD_AbortCallback
|
/tmp/ccLisECN.s:401 .text.BSP_SD_AbortCallback:0000000000000000 BSP_SD_AbortCallback
|
||||||
/tmp/cckaKWgV.s:414 .text.HAL_SD_AbortCallback:0000000000000000 $t
|
/tmp/ccLisECN.s:414 .text.HAL_SD_AbortCallback:0000000000000000 $t
|
||||||
/tmp/cckaKWgV.s:421 .text.HAL_SD_AbortCallback:0000000000000000 HAL_SD_AbortCallback
|
/tmp/ccLisECN.s:421 .text.HAL_SD_AbortCallback:0000000000000000 HAL_SD_AbortCallback
|
||||||
/tmp/cckaKWgV.s:443 .text.BSP_SD_WriteCpltCallback:0000000000000000 $t
|
/tmp/ccLisECN.s:443 .text.BSP_SD_WriteCpltCallback:0000000000000000 $t
|
||||||
/tmp/cckaKWgV.s:450 .text.BSP_SD_WriteCpltCallback:0000000000000000 BSP_SD_WriteCpltCallback
|
/tmp/ccLisECN.s:450 .text.BSP_SD_WriteCpltCallback:0000000000000000 BSP_SD_WriteCpltCallback
|
||||||
/tmp/cckaKWgV.s:463 .text.HAL_SD_TxCpltCallback:0000000000000000 $t
|
/tmp/ccLisECN.s:463 .text.HAL_SD_TxCpltCallback:0000000000000000 $t
|
||||||
/tmp/cckaKWgV.s:470 .text.HAL_SD_TxCpltCallback:0000000000000000 HAL_SD_TxCpltCallback
|
/tmp/ccLisECN.s:470 .text.HAL_SD_TxCpltCallback:0000000000000000 HAL_SD_TxCpltCallback
|
||||||
/tmp/cckaKWgV.s:492 .text.BSP_SD_ReadCpltCallback:0000000000000000 $t
|
/tmp/ccLisECN.s:492 .text.BSP_SD_ReadCpltCallback:0000000000000000 $t
|
||||||
/tmp/cckaKWgV.s:499 .text.BSP_SD_ReadCpltCallback:0000000000000000 BSP_SD_ReadCpltCallback
|
/tmp/ccLisECN.s:499 .text.BSP_SD_ReadCpltCallback:0000000000000000 BSP_SD_ReadCpltCallback
|
||||||
/tmp/cckaKWgV.s:512 .text.HAL_SD_RxCpltCallback:0000000000000000 $t
|
/tmp/ccLisECN.s:512 .text.HAL_SD_RxCpltCallback:0000000000000000 $t
|
||||||
/tmp/cckaKWgV.s:519 .text.HAL_SD_RxCpltCallback:0000000000000000 HAL_SD_RxCpltCallback
|
/tmp/ccLisECN.s:519 .text.HAL_SD_RxCpltCallback:0000000000000000 HAL_SD_RxCpltCallback
|
||||||
/tmp/cckaKWgV.s:541 .text.BSP_SD_IsDetected:0000000000000000 $t
|
/tmp/ccLisECN.s:541 .text.BSP_SD_IsDetected:0000000000000000 $t
|
||||||
/tmp/cckaKWgV.s:548 .text.BSP_SD_IsDetected:0000000000000000 BSP_SD_IsDetected
|
/tmp/ccLisECN.s:548 .text.BSP_SD_IsDetected:0000000000000000 BSP_SD_IsDetected
|
||||||
/tmp/cckaKWgV.s:589 .text.BSP_SD_Init:0000000000000000 $t
|
/tmp/ccLisECN.s:589 .text.BSP_SD_Init:0000000000000000 $t
|
||||||
/tmp/cckaKWgV.s:596 .text.BSP_SD_Init:0000000000000000 BSP_SD_Init
|
/tmp/ccLisECN.s:596 .text.BSP_SD_Init:0000000000000000 BSP_SD_Init
|
||||||
/tmp/cckaKWgV.s:656 .text.BSP_SD_Init:0000000000000030 $d
|
/tmp/ccLisECN.s:656 .text.BSP_SD_Init:0000000000000030 $d
|
||||||
|
|
||||||
UNDEFINED SYMBOLS
|
UNDEFINED SYMBOLS
|
||||||
HAL_SD_ReadBlocks
|
HAL_SD_ReadBlocks
|
||||||
|
|||||||
Binary file not shown.
@ -33,6 +33,8 @@ build/diskio.o: Middlewares/Third_Party/FatFs/src/diskio.c \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h \
|
||||||
@ -84,6 +86,8 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/ccRvL6Kc.s page 1
|
ARM GAS /tmp/ccLW0nFL.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/ccRvL6Kc.s page 1
|
|||||||
28:Middlewares/Third_Party/FatFs/src/diskio.c **** /* Private function prototypes -----------------------------------------------*/
|
28:Middlewares/Third_Party/FatFs/src/diskio.c **** /* Private function prototypes -----------------------------------------------*/
|
||||||
29:Middlewares/Third_Party/FatFs/src/diskio.c **** /* Private functions ---------------------------------------------------------*/
|
29:Middlewares/Third_Party/FatFs/src/diskio.c **** /* Private functions ---------------------------------------------------------*/
|
||||||
30:Middlewares/Third_Party/FatFs/src/diskio.c ****
|
30:Middlewares/Third_Party/FatFs/src/diskio.c ****
|
||||||
ARM GAS /tmp/ccRvL6Kc.s page 2
|
ARM GAS /tmp/ccLW0nFL.s page 2
|
||||||
|
|
||||||
|
|
||||||
31:Middlewares/Third_Party/FatFs/src/diskio.c **** /**
|
31:Middlewares/Third_Party/FatFs/src/diskio.c **** /**
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/ccRvL6Kc.s page 1
|
|||||||
70 .fpu fpv5-d16
|
70 .fpu fpv5-d16
|
||||||
72 disk_initialize:
|
72 disk_initialize:
|
||||||
73 .LVL3:
|
73 .LVL3:
|
||||||
ARM GAS /tmp/ccRvL6Kc.s page 3
|
ARM GAS /tmp/ccLW0nFL.s page 3
|
||||||
|
|
||||||
|
|
||||||
74 .LFB1184:
|
74 .LFB1184:
|
||||||
@ -178,7 +178,7 @@ ARM GAS /tmp/ccRvL6Kc.s page 1
|
|||||||
61:Middlewares/Third_Party/FatFs/src/diskio.c **** }
|
61:Middlewares/Third_Party/FatFs/src/diskio.c **** }
|
||||||
62:Middlewares/Third_Party/FatFs/src/diskio.c **** return stat;
|
62:Middlewares/Third_Party/FatFs/src/diskio.c **** return stat;
|
||||||
112 .loc 1 62 3 is_stmt 1 view .LVU23
|
112 .loc 1 62 3 is_stmt 1 view .LVU23
|
||||||
ARM GAS /tmp/ccRvL6Kc.s page 4
|
ARM GAS /tmp/ccLW0nFL.s page 4
|
||||||
|
|
||||||
|
|
||||||
63:Middlewares/Third_Party/FatFs/src/diskio.c **** }
|
63:Middlewares/Third_Party/FatFs/src/diskio.c **** }
|
||||||
@ -238,7 +238,7 @@ ARM GAS /tmp/ccRvL6Kc.s page 1
|
|||||||
150 .cfi_offset 5, -8
|
150 .cfi_offset 5, -8
|
||||||
151 .cfi_offset 14, -4
|
151 .cfi_offset 14, -4
|
||||||
80:Middlewares/Third_Party/FatFs/src/diskio.c **** DRESULT res;
|
80:Middlewares/Third_Party/FatFs/src/diskio.c **** DRESULT res;
|
||||||
ARM GAS /tmp/ccRvL6Kc.s page 5
|
ARM GAS /tmp/ccLW0nFL.s page 5
|
||||||
|
|
||||||
|
|
||||||
152 .loc 1 80 3 is_stmt 1 view .LVU29
|
152 .loc 1 80 3 is_stmt 1 view .LVU29
|
||||||
@ -298,7 +298,7 @@ ARM GAS /tmp/ccRvL6Kc.s page 1
|
|||||||
101:Middlewares/Third_Party/FatFs/src/diskio.c **** {
|
101:Middlewares/Third_Party/FatFs/src/diskio.c **** {
|
||||||
188 .loc 1 101 1 is_stmt 1 view -0
|
188 .loc 1 101 1 is_stmt 1 view -0
|
||||||
189 .cfi_startproc
|
189 .cfi_startproc
|
||||||
ARM GAS /tmp/ccRvL6Kc.s page 6
|
ARM GAS /tmp/ccLW0nFL.s page 6
|
||||||
|
|
||||||
|
|
||||||
190 @ args = 0, pretend = 0, frame = 0
|
190 @ args = 0, pretend = 0, frame = 0
|
||||||
@ -358,7 +358,7 @@ ARM GAS /tmp/ccRvL6Kc.s page 1
|
|||||||
112:Middlewares/Third_Party/FatFs/src/diskio.c **** * @param cmd: Control code
|
112:Middlewares/Third_Party/FatFs/src/diskio.c **** * @param cmd: Control code
|
||||||
113:Middlewares/Third_Party/FatFs/src/diskio.c **** * @param *buff: Buffer to send/receive control data
|
113:Middlewares/Third_Party/FatFs/src/diskio.c **** * @param *buff: Buffer to send/receive control data
|
||||||
114:Middlewares/Third_Party/FatFs/src/diskio.c **** * @retval DRESULT: Operation result
|
114:Middlewares/Third_Party/FatFs/src/diskio.c **** * @retval DRESULT: Operation result
|
||||||
ARM GAS /tmp/ccRvL6Kc.s page 7
|
ARM GAS /tmp/ccLW0nFL.s page 7
|
||||||
|
|
||||||
|
|
||||||
115:Middlewares/Third_Party/FatFs/src/diskio.c **** */
|
115:Middlewares/Third_Party/FatFs/src/diskio.c **** */
|
||||||
@ -418,7 +418,7 @@ ARM GAS /tmp/ccRvL6Kc.s page 1
|
|||||||
279 get_fattime:
|
279 get_fattime:
|
||||||
280 .LFB1188:
|
280 .LFB1188:
|
||||||
128:Middlewares/Third_Party/FatFs/src/diskio.c **** #endif /* _USE_IOCTL == 1 */
|
128:Middlewares/Third_Party/FatFs/src/diskio.c **** #endif /* _USE_IOCTL == 1 */
|
||||||
ARM GAS /tmp/ccRvL6Kc.s page 8
|
ARM GAS /tmp/ccLW0nFL.s page 8
|
||||||
|
|
||||||
|
|
||||||
129:Middlewares/Third_Party/FatFs/src/diskio.c ****
|
129:Middlewares/Third_Party/FatFs/src/diskio.c ****
|
||||||
@ -451,28 +451,28 @@ ARM GAS /tmp/ccRvL6Kc.s page 1
|
|||||||
299 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h"
|
299 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h"
|
||||||
300 .file 7 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_rcc.h"
|
300 .file 7 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_rcc.h"
|
||||||
301 .file 8 "Middlewares/Third_Party/FatFs/src/ff_gen_drv.h"
|
301 .file 8 "Middlewares/Third_Party/FatFs/src/ff_gen_drv.h"
|
||||||
ARM GAS /tmp/ccRvL6Kc.s page 9
|
ARM GAS /tmp/ccLW0nFL.s page 9
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 diskio.c
|
*ABS*:0000000000000000 diskio.c
|
||||||
/tmp/ccRvL6Kc.s:17 .text.disk_status:0000000000000000 $t
|
/tmp/ccLW0nFL.s:17 .text.disk_status:0000000000000000 $t
|
||||||
/tmp/ccRvL6Kc.s:25 .text.disk_status:0000000000000000 disk_status
|
/tmp/ccLW0nFL.s:25 .text.disk_status:0000000000000000 disk_status
|
||||||
/tmp/ccRvL6Kc.s:60 .text.disk_status:0000000000000014 $d
|
/tmp/ccLW0nFL.s:60 .text.disk_status:0000000000000014 $d
|
||||||
/tmp/ccRvL6Kc.s:65 .text.disk_initialize:0000000000000000 $t
|
/tmp/ccLW0nFL.s:65 .text.disk_initialize:0000000000000000 $t
|
||||||
/tmp/ccRvL6Kc.s:72 .text.disk_initialize:0000000000000000 disk_initialize
|
/tmp/ccLW0nFL.s:72 .text.disk_initialize:0000000000000000 disk_initialize
|
||||||
/tmp/ccRvL6Kc.s:125 .text.disk_initialize:0000000000000024 $d
|
/tmp/ccLW0nFL.s:125 .text.disk_initialize:0000000000000024 $d
|
||||||
/tmp/ccRvL6Kc.s:130 .text.disk_read:0000000000000000 $t
|
/tmp/ccLW0nFL.s:130 .text.disk_read:0000000000000000 $t
|
||||||
/tmp/ccRvL6Kc.s:137 .text.disk_read:0000000000000000 disk_read
|
/tmp/ccLW0nFL.s:137 .text.disk_read:0000000000000000 disk_read
|
||||||
/tmp/ccRvL6Kc.s:173 .text.disk_read:0000000000000014 $d
|
/tmp/ccLW0nFL.s:173 .text.disk_read:0000000000000014 $d
|
||||||
/tmp/ccRvL6Kc.s:178 .text.disk_write:0000000000000000 $t
|
/tmp/ccLW0nFL.s:178 .text.disk_write:0000000000000000 $t
|
||||||
/tmp/ccRvL6Kc.s:185 .text.disk_write:0000000000000000 disk_write
|
/tmp/ccLW0nFL.s:185 .text.disk_write:0000000000000000 disk_write
|
||||||
/tmp/ccRvL6Kc.s:221 .text.disk_write:0000000000000014 $d
|
/tmp/ccLW0nFL.s:221 .text.disk_write:0000000000000014 $d
|
||||||
/tmp/ccRvL6Kc.s:226 .text.disk_ioctl:0000000000000000 $t
|
/tmp/ccLW0nFL.s:226 .text.disk_ioctl:0000000000000000 $t
|
||||||
/tmp/ccRvL6Kc.s:233 .text.disk_ioctl:0000000000000000 disk_ioctl
|
/tmp/ccLW0nFL.s:233 .text.disk_ioctl:0000000000000000 disk_ioctl
|
||||||
/tmp/ccRvL6Kc.s:267 .text.disk_ioctl:0000000000000014 $d
|
/tmp/ccLW0nFL.s:267 .text.disk_ioctl:0000000000000014 $d
|
||||||
/tmp/ccRvL6Kc.s:272 .text.get_fattime:0000000000000000 $t
|
/tmp/ccLW0nFL.s:272 .text.get_fattime:0000000000000000 $t
|
||||||
/tmp/ccRvL6Kc.s:279 .text.get_fattime:0000000000000000 get_fattime
|
/tmp/ccLW0nFL.s:279 .text.get_fattime:0000000000000000 get_fattime
|
||||||
|
|
||||||
UNDEFINED SYMBOLS
|
UNDEFINED SYMBOLS
|
||||||
disk
|
disk
|
||||||
|
|||||||
BIN
build/diskio.o
BIN
build/diskio.o
Binary file not shown.
@ -31,6 +31,8 @@ build/fatfs.o: Src/fatfs.c Inc/fatfs.h \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h \
|
||||||
@ -83,6 +85,8 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/cctdVBeu.s page 1
|
ARM GAS /tmp/ccZL1NQN.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/cctdVBeu.s page 1
|
|||||||
29:Src/fatfs.c ****
|
29:Src/fatfs.c ****
|
||||||
30:Src/fatfs.c **** void MX_FATFS_Init(void)
|
30:Src/fatfs.c **** void MX_FATFS_Init(void)
|
||||||
31:Src/fatfs.c **** {
|
31:Src/fatfs.c **** {
|
||||||
ARM GAS /tmp/cctdVBeu.s page 2
|
ARM GAS /tmp/ccZL1NQN.s page 2
|
||||||
|
|
||||||
|
|
||||||
28 .loc 1 31 1 view -0
|
28 .loc 1 31 1 view -0
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/cctdVBeu.s page 1
|
|||||||
69 @ args = 0, pretend = 0, frame = 0
|
69 @ args = 0, pretend = 0, frame = 0
|
||||||
70 @ frame_needed = 0, uses_anonymous_args = 0
|
70 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
71 @ link register save eliminated.
|
71 @ link register save eliminated.
|
||||||
ARM GAS /tmp/cctdVBeu.s page 3
|
ARM GAS /tmp/ccZL1NQN.s page 3
|
||||||
|
|
||||||
|
|
||||||
47:Src/fatfs.c **** /* USER CODE BEGIN get_fattime */
|
47:Src/fatfs.c **** /* USER CODE BEGIN get_fattime */
|
||||||
@ -172,24 +172,24 @@ ARM GAS /tmp/cctdVBeu.s page 1
|
|||||||
117 .file 9 "Middlewares/Third_Party/FatFs/src/ff_gen_drv.h"
|
117 .file 9 "Middlewares/Third_Party/FatFs/src/ff_gen_drv.h"
|
||||||
118 .file 10 "Inc/sd_diskio.h"
|
118 .file 10 "Inc/sd_diskio.h"
|
||||||
119 .file 11 "Inc/fatfs.h"
|
119 .file 11 "Inc/fatfs.h"
|
||||||
ARM GAS /tmp/cctdVBeu.s page 4
|
ARM GAS /tmp/ccZL1NQN.s page 4
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 fatfs.c
|
*ABS*:0000000000000000 fatfs.c
|
||||||
/tmp/cctdVBeu.s:17 .text.MX_FATFS_Init:0000000000000000 $t
|
/tmp/ccZL1NQN.s:17 .text.MX_FATFS_Init:0000000000000000 $t
|
||||||
/tmp/cctdVBeu.s:25 .text.MX_FATFS_Init:0000000000000000 MX_FATFS_Init
|
/tmp/ccZL1NQN.s:25 .text.MX_FATFS_Init:0000000000000000 MX_FATFS_Init
|
||||||
/tmp/cctdVBeu.s:51 .text.MX_FATFS_Init:0000000000000010 $d
|
/tmp/ccZL1NQN.s:51 .text.MX_FATFS_Init:0000000000000010 $d
|
||||||
/tmp/cctdVBeu.s:58 .text.get_fattime:0000000000000000 $t
|
/tmp/ccZL1NQN.s:58 .text.get_fattime:0000000000000000 $t
|
||||||
/tmp/cctdVBeu.s:65 .text.get_fattime:0000000000000000 get_fattime
|
/tmp/ccZL1NQN.s:65 .text.get_fattime:0000000000000000 get_fattime
|
||||||
/tmp/cctdVBeu.s:93 .bss.SDFile:0000000000000000 SDFile
|
/tmp/ccZL1NQN.s:93 .bss.SDFile:0000000000000000 SDFile
|
||||||
/tmp/cctdVBeu.s:87 .bss.SDFatFS:0000000000000000 SDFatFS
|
/tmp/ccZL1NQN.s:87 .bss.SDFatFS:0000000000000000 SDFatFS
|
||||||
/tmp/cctdVBeu.s:100 .bss.SDPath:0000000000000000 SDPath
|
/tmp/ccZL1NQN.s:100 .bss.SDPath:0000000000000000 SDPath
|
||||||
/tmp/cctdVBeu.s:106 .bss.retSD:0000000000000000 retSD
|
/tmp/ccZL1NQN.s:106 .bss.retSD:0000000000000000 retSD
|
||||||
/tmp/cctdVBeu.s:84 .bss.SDFatFS:0000000000000000 $d
|
/tmp/ccZL1NQN.s:84 .bss.SDFatFS:0000000000000000 $d
|
||||||
/tmp/cctdVBeu.s:90 .bss.SDFile:0000000000000000 $d
|
/tmp/ccZL1NQN.s:90 .bss.SDFile:0000000000000000 $d
|
||||||
/tmp/cctdVBeu.s:96 .bss.SDPath:0000000000000000 $d
|
/tmp/ccZL1NQN.s:96 .bss.SDPath:0000000000000000 $d
|
||||||
/tmp/cctdVBeu.s:107 .bss.retSD:0000000000000000 $d
|
/tmp/ccZL1NQN.s:107 .bss.retSD:0000000000000000 $d
|
||||||
|
|
||||||
UNDEFINED SYMBOLS
|
UNDEFINED SYMBOLS
|
||||||
FATFS_LinkDriver
|
FATFS_LinkDriver
|
||||||
|
|||||||
BIN
build/fatfs.o
BIN
build/fatfs.o
Binary file not shown.
@ -28,7 +28,9 @@ build/fatfs_platform.o: Src/fatfs_platform.c Inc/fatfs_platform.h \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
|
||||||
Inc/fatfs_platform.h:
|
Inc/fatfs_platform.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
||||||
Inc/stm32f7xx_hal_conf.h:
|
Inc/stm32f7xx_hal_conf.h:
|
||||||
@ -62,3 +64,5 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/cc86t6XV.s page 1
|
ARM GAS /tmp/ccvwXCmu.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/cc86t6XV.s page 1
|
|||||||
35 .cfi_offset 3, -8
|
35 .cfi_offset 3, -8
|
||||||
36 .cfi_offset 14, -4
|
36 .cfi_offset 14, -4
|
||||||
22:Src/fatfs_platform.c **** uint8_t status = SD_PRESENT;
|
22:Src/fatfs_platform.c **** uint8_t status = SD_PRESENT;
|
||||||
ARM GAS /tmp/cc86t6XV.s page 2
|
ARM GAS /tmp/ccvwXCmu.s page 2
|
||||||
|
|
||||||
|
|
||||||
37 .loc 1 22 5 view .LVU1
|
37 .loc 1 22 5 view .LVU1
|
||||||
@ -106,14 +106,14 @@ ARM GAS /tmp/cc86t6XV.s page 1
|
|||||||
68 .file 2 "/usr/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h"
|
68 .file 2 "/usr/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h"
|
||||||
69 .file 3 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f767xx.h"
|
69 .file 3 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f767xx.h"
|
||||||
70 .file 4 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio.h"
|
70 .file 4 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio.h"
|
||||||
ARM GAS /tmp/cc86t6XV.s page 3
|
ARM GAS /tmp/ccvwXCmu.s page 3
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 fatfs_platform.c
|
*ABS*:0000000000000000 fatfs_platform.c
|
||||||
/tmp/cc86t6XV.s:17 .text.BSP_PlatformIsDetected:0000000000000000 $t
|
/tmp/ccvwXCmu.s:17 .text.BSP_PlatformIsDetected:0000000000000000 $t
|
||||||
/tmp/cc86t6XV.s:25 .text.BSP_PlatformIsDetected:0000000000000000 BSP_PlatformIsDetected
|
/tmp/ccvwXCmu.s:25 .text.BSP_PlatformIsDetected:0000000000000000 BSP_PlatformIsDetected
|
||||||
/tmp/cc86t6XV.s:62 .text.BSP_PlatformIsDetected:0000000000000014 $d
|
/tmp/ccvwXCmu.s:62 .text.BSP_PlatformIsDetected:0000000000000014 $d
|
||||||
|
|
||||||
UNDEFINED SYMBOLS
|
UNDEFINED SYMBOLS
|
||||||
HAL_GPIO_ReadPin
|
HAL_GPIO_ReadPin
|
||||||
|
|||||||
Binary file not shown.
@ -31,6 +31,8 @@ build/ff.o: Middlewares/Third_Party/FatFs/src/ff.c \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h \
|
||||||
@ -80,6 +82,8 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h:
|
||||||
|
|||||||
1070
build/ff.lst
1070
build/ff.lst
File diff suppressed because it is too large
Load Diff
BIN
build/ff.o
BIN
build/ff.o
Binary file not shown.
@ -33,6 +33,8 @@ build/ff_gen_drv.o: Middlewares/Third_Party/FatFs/src/ff_gen_drv.c \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h \
|
||||||
@ -84,6 +86,8 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/ccKywJYw.s page 1
|
ARM GAS /tmp/ccEhlyop.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/ccKywJYw.s page 1
|
|||||||
28:Middlewares/Third_Party/FatFs/src/ff_gen_drv.c ****
|
28:Middlewares/Third_Party/FatFs/src/ff_gen_drv.c ****
|
||||||
29:Middlewares/Third_Party/FatFs/src/ff_gen_drv.c **** /**
|
29:Middlewares/Third_Party/FatFs/src/ff_gen_drv.c **** /**
|
||||||
30:Middlewares/Third_Party/FatFs/src/ff_gen_drv.c **** * @brief Links a compatible diskio driver/lun id and increments the number of active
|
30:Middlewares/Third_Party/FatFs/src/ff_gen_drv.c **** * @brief Links a compatible diskio driver/lun id and increments the number of active
|
||||||
ARM GAS /tmp/ccKywJYw.s page 2
|
ARM GAS /tmp/ccEhlyop.s page 2
|
||||||
|
|
||||||
|
|
||||||
31:Middlewares/Third_Party/FatFs/src/ff_gen_drv.c **** * linked drivers.
|
31:Middlewares/Third_Party/FatFs/src/ff_gen_drv.c **** * linked drivers.
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/ccKywJYw.s page 1
|
|||||||
64 .loc 1 48 5 is_stmt 1 view .LVU13
|
64 .loc 1 48 5 is_stmt 1 view .LVU13
|
||||||
65 .loc 1 48 18 is_stmt 0 view .LVU14
|
65 .loc 1 48 18 is_stmt 0 view .LVU14
|
||||||
66 002c 5C7A ldrb r4, [r3, #9] @ zero_extendqisi2
|
66 002c 5C7A ldrb r4, [r3, #9] @ zero_extendqisi2
|
||||||
ARM GAS /tmp/ccKywJYw.s page 3
|
ARM GAS /tmp/ccEhlyop.s page 3
|
||||||
|
|
||||||
|
|
||||||
67 .LVL2:
|
67 .LVL2:
|
||||||
@ -178,7 +178,7 @@ ARM GAS /tmp/ccKywJYw.s page 1
|
|||||||
41:Middlewares/Third_Party/FatFs/src/ff_gen_drv.c **** uint8_t DiskNum = 0;
|
41:Middlewares/Third_Party/FatFs/src/ff_gen_drv.c **** uint8_t DiskNum = 0;
|
||||||
111 .loc 1 41 11 view .LVU32
|
111 .loc 1 41 11 view .LVU32
|
||||||
112 004c 0120 movs r0, #1
|
112 004c 0120 movs r0, #1
|
||||||
ARM GAS /tmp/ccKywJYw.s page 4
|
ARM GAS /tmp/ccEhlyop.s page 4
|
||||||
|
|
||||||
|
|
||||||
113 .LVL10:
|
113 .LVL10:
|
||||||
@ -238,7 +238,7 @@ ARM GAS /tmp/ccKywJYw.s page 1
|
|||||||
156 .align 1
|
156 .align 1
|
||||||
157 .global FATFS_UnLinkDriverEx
|
157 .global FATFS_UnLinkDriverEx
|
||||||
158 .syntax unified
|
158 .syntax unified
|
||||||
ARM GAS /tmp/ccKywJYw.s page 5
|
ARM GAS /tmp/ccEhlyop.s page 5
|
||||||
|
|
||||||
|
|
||||||
159 .thumb
|
159 .thumb
|
||||||
@ -298,7 +298,7 @@ ARM GAS /tmp/ccKywJYw.s page 1
|
|||||||
195 0016 084A ldr r2, .L16
|
195 0016 084A ldr r2, .L16
|
||||||
196 0018 02EB8301 add r1, r2, r3, lsl #2
|
196 0018 02EB8301 add r1, r2, r3, lsl #2
|
||||||
197 .LVL15:
|
197 .LVL15:
|
||||||
ARM GAS /tmp/ccKywJYw.s page 6
|
ARM GAS /tmp/ccEhlyop.s page 6
|
||||||
|
|
||||||
|
|
||||||
198 .loc 1 90 25 view .LVU54
|
198 .loc 1 90 25 view .LVU54
|
||||||
@ -358,7 +358,7 @@ ARM GAS /tmp/ccKywJYw.s page 1
|
|||||||
242 .global FATFS_UnLinkDriver
|
242 .global FATFS_UnLinkDriver
|
||||||
243 .syntax unified
|
243 .syntax unified
|
||||||
244 .thumb
|
244 .thumb
|
||||||
ARM GAS /tmp/ccKywJYw.s page 7
|
ARM GAS /tmp/ccEhlyop.s page 7
|
||||||
|
|
||||||
|
|
||||||
245 .thumb_func
|
245 .thumb_func
|
||||||
@ -418,7 +418,7 @@ ARM GAS /tmp/ccKywJYw.s page 1
|
|||||||
283 @ args = 0, pretend = 0, frame = 0
|
283 @ args = 0, pretend = 0, frame = 0
|
||||||
284 @ frame_needed = 0, uses_anonymous_args = 0
|
284 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
285 @ link register save eliminated.
|
285 @ link register save eliminated.
|
||||||
ARM GAS /tmp/ccKywJYw.s page 8
|
ARM GAS /tmp/ccEhlyop.s page 8
|
||||||
|
|
||||||
|
|
||||||
118:Middlewares/Third_Party/FatFs/src/ff_gen_drv.c **** return disk.nbr;
|
118:Middlewares/Third_Party/FatFs/src/ff_gen_drv.c **** return disk.nbr;
|
||||||
@ -452,25 +452,25 @@ ARM GAS /tmp/ccKywJYw.s page 1
|
|||||||
313 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h"
|
313 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h"
|
||||||
314 .file 7 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_rcc.h"
|
314 .file 7 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_rcc.h"
|
||||||
315 .file 8 "Middlewares/Third_Party/FatFs/src/ff_gen_drv.h"
|
315 .file 8 "Middlewares/Third_Party/FatFs/src/ff_gen_drv.h"
|
||||||
ARM GAS /tmp/ccKywJYw.s page 9
|
ARM GAS /tmp/ccEhlyop.s page 9
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 ff_gen_drv.c
|
*ABS*:0000000000000000 ff_gen_drv.c
|
||||||
/tmp/ccKywJYw.s:17 .text.FATFS_LinkDriverEx:0000000000000000 $t
|
/tmp/ccEhlyop.s:17 .text.FATFS_LinkDriverEx:0000000000000000 $t
|
||||||
/tmp/ccKywJYw.s:25 .text.FATFS_LinkDriverEx:0000000000000000 FATFS_LinkDriverEx
|
/tmp/ccEhlyop.s:25 .text.FATFS_LinkDriverEx:0000000000000000 FATFS_LinkDriverEx
|
||||||
/tmp/ccKywJYw.s:120 .text.FATFS_LinkDriverEx:0000000000000050 $d
|
/tmp/ccEhlyop.s:120 .text.FATFS_LinkDriverEx:0000000000000050 $d
|
||||||
/tmp/ccKywJYw.s:125 .text.FATFS_LinkDriver:0000000000000000 $t
|
/tmp/ccEhlyop.s:125 .text.FATFS_LinkDriver:0000000000000000 $t
|
||||||
/tmp/ccKywJYw.s:132 .text.FATFS_LinkDriver:0000000000000000 FATFS_LinkDriver
|
/tmp/ccEhlyop.s:132 .text.FATFS_LinkDriver:0000000000000000 FATFS_LinkDriver
|
||||||
/tmp/ccKywJYw.s:156 .text.FATFS_UnLinkDriverEx:0000000000000000 $t
|
/tmp/ccEhlyop.s:156 .text.FATFS_UnLinkDriverEx:0000000000000000 $t
|
||||||
/tmp/ccKywJYw.s:163 .text.FATFS_UnLinkDriverEx:0000000000000000 FATFS_UnLinkDriverEx
|
/tmp/ccEhlyop.s:163 .text.FATFS_UnLinkDriverEx:0000000000000000 FATFS_UnLinkDriverEx
|
||||||
/tmp/ccKywJYw.s:236 .text.FATFS_UnLinkDriverEx:0000000000000038 $d
|
/tmp/ccEhlyop.s:236 .text.FATFS_UnLinkDriverEx:0000000000000038 $d
|
||||||
/tmp/ccKywJYw.s:241 .text.FATFS_UnLinkDriver:0000000000000000 $t
|
/tmp/ccEhlyop.s:241 .text.FATFS_UnLinkDriver:0000000000000000 $t
|
||||||
/tmp/ccKywJYw.s:248 .text.FATFS_UnLinkDriver:0000000000000000 FATFS_UnLinkDriver
|
/tmp/ccEhlyop.s:248 .text.FATFS_UnLinkDriver:0000000000000000 FATFS_UnLinkDriver
|
||||||
/tmp/ccKywJYw.s:272 .text.FATFS_GetAttachedDriversNbr:0000000000000000 $t
|
/tmp/ccEhlyop.s:272 .text.FATFS_GetAttachedDriversNbr:0000000000000000 $t
|
||||||
/tmp/ccKywJYw.s:279 .text.FATFS_GetAttachedDriversNbr:0000000000000000 FATFS_GetAttachedDriversNbr
|
/tmp/ccEhlyop.s:279 .text.FATFS_GetAttachedDriversNbr:0000000000000000 FATFS_GetAttachedDriversNbr
|
||||||
/tmp/ccKywJYw.s:295 .text.FATFS_GetAttachedDriversNbr:0000000000000008 $d
|
/tmp/ccEhlyop.s:295 .text.FATFS_GetAttachedDriversNbr:0000000000000008 $d
|
||||||
/tmp/ccKywJYw.s:305 .bss.disk:0000000000000000 disk
|
/tmp/ccEhlyop.s:305 .bss.disk:0000000000000000 disk
|
||||||
/tmp/ccKywJYw.s:301 .bss.disk:0000000000000000 $d
|
/tmp/ccEhlyop.s:301 .bss.disk:0000000000000000 $d
|
||||||
|
|
||||||
NO UNDEFINED SYMBOLS
|
NO UNDEFINED SYMBOLS
|
||||||
|
|||||||
Binary file not shown.
@ -29,6 +29,8 @@ build/main.o: Src/main.c Inc/main.h \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h \
|
||||||
@ -81,6 +83,8 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h:
|
||||||
|
|||||||
30352
build/main.lst
30352
build/main.lst
File diff suppressed because it is too large
Load Diff
BIN
build/main.o
BIN
build/main.o
Binary file not shown.
@ -33,6 +33,8 @@ build/sd_diskio.o: Src/sd_diskio.c \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h \
|
||||||
@ -84,6 +86,8 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/ccilYzpH.s page 1
|
ARM GAS /tmp/ccTSxLLU.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/ccilYzpH.s page 1
|
|||||||
29:Src/sd_diskio.c **** #include "sd_diskio.h"
|
29:Src/sd_diskio.c **** #include "sd_diskio.h"
|
||||||
30:Src/sd_diskio.c ****
|
30:Src/sd_diskio.c ****
|
||||||
31:Src/sd_diskio.c **** /* Private typedef -----------------------------------------------------------*/
|
31:Src/sd_diskio.c **** /* Private typedef -----------------------------------------------------------*/
|
||||||
ARM GAS /tmp/ccilYzpH.s page 2
|
ARM GAS /tmp/ccTSxLLU.s page 2
|
||||||
|
|
||||||
|
|
||||||
32:Src/sd_diskio.c **** /* Private define ------------------------------------------------------------*/
|
32:Src/sd_diskio.c **** /* Private define ------------------------------------------------------------*/
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/ccilYzpH.s page 1
|
|||||||
86:Src/sd_diskio.c **** /* USER CODE END beforeFunctionSection */
|
86:Src/sd_diskio.c **** /* USER CODE END beforeFunctionSection */
|
||||||
87:Src/sd_diskio.c ****
|
87:Src/sd_diskio.c ****
|
||||||
88:Src/sd_diskio.c **** /* Private functions ---------------------------------------------------------*/
|
88:Src/sd_diskio.c **** /* Private functions ---------------------------------------------------------*/
|
||||||
ARM GAS /tmp/ccilYzpH.s page 3
|
ARM GAS /tmp/ccTSxLLU.s page 3
|
||||||
|
|
||||||
|
|
||||||
89:Src/sd_diskio.c ****
|
89:Src/sd_diskio.c ****
|
||||||
@ -178,7 +178,7 @@ ARM GAS /tmp/ccilYzpH.s page 1
|
|||||||
71 .global SD_initialize
|
71 .global SD_initialize
|
||||||
72 .syntax unified
|
72 .syntax unified
|
||||||
73 .thumb
|
73 .thumb
|
||||||
ARM GAS /tmp/ccilYzpH.s page 4
|
ARM GAS /tmp/ccTSxLLU.s page 4
|
||||||
|
|
||||||
|
|
||||||
74 .thumb_func
|
74 .thumb_func
|
||||||
@ -238,7 +238,7 @@ ARM GAS /tmp/ccilYzpH.s page 1
|
|||||||
123:Src/sd_diskio.c **** }
|
123:Src/sd_diskio.c **** }
|
||||||
107 .loc 1 123 1 view .LVU21
|
107 .loc 1 123 1 view .LVU21
|
||||||
108 0014 10BD pop {r4, pc}
|
108 0014 10BD pop {r4, pc}
|
||||||
ARM GAS /tmp/ccilYzpH.s page 5
|
ARM GAS /tmp/ccTSxLLU.s page 5
|
||||||
|
|
||||||
|
|
||||||
109 .L9:
|
109 .L9:
|
||||||
@ -298,7 +298,7 @@ ARM GAS /tmp/ccilYzpH.s page 1
|
|||||||
152 0006 08BD pop {r3, pc}
|
152 0006 08BD pop {r3, pc}
|
||||||
153 .cfi_endproc
|
153 .cfi_endproc
|
||||||
154 .LFE1185:
|
154 .LFE1185:
|
||||||
ARM GAS /tmp/ccilYzpH.s page 6
|
ARM GAS /tmp/ccTSxLLU.s page 6
|
||||||
|
|
||||||
|
|
||||||
156 .section .text.SD_read,"ax",%progbits
|
156 .section .text.SD_read,"ax",%progbits
|
||||||
@ -358,7 +358,7 @@ ARM GAS /tmp/ccilYzpH.s page 1
|
|||||||
193 .loc 1 151 5 view .LVU38
|
193 .loc 1 151 5 view .LVU38
|
||||||
194 0010 30B9 cbnz r0, .L17
|
194 0010 30B9 cbnz r0, .L17
|
||||||
195 .L16:
|
195 .L16:
|
||||||
ARM GAS /tmp/ccilYzpH.s page 7
|
ARM GAS /tmp/ccTSxLLU.s page 7
|
||||||
|
|
||||||
|
|
||||||
152:Src/sd_diskio.c **** (uint32_t) (sector),
|
152:Src/sd_diskio.c **** (uint32_t) (sector),
|
||||||
@ -418,7 +418,7 @@ ARM GAS /tmp/ccilYzpH.s page 1
|
|||||||
170:Src/sd_diskio.c **** * @param lun : not used
|
170:Src/sd_diskio.c **** * @param lun : not used
|
||||||
171:Src/sd_diskio.c **** * @param *buff: Data to be written
|
171:Src/sd_diskio.c **** * @param *buff: Data to be written
|
||||||
172:Src/sd_diskio.c **** * @param sector: Sector address (LBA)
|
172:Src/sd_diskio.c **** * @param sector: Sector address (LBA)
|
||||||
ARM GAS /tmp/ccilYzpH.s page 8
|
ARM GAS /tmp/ccTSxLLU.s page 8
|
||||||
|
|
||||||
|
|
||||||
173:Src/sd_diskio.c **** * @param count: Number of sectors to write (1..128)
|
173:Src/sd_diskio.c **** * @param count: Number of sectors to write (1..128)
|
||||||
@ -478,7 +478,7 @@ ARM GAS /tmp/ccilYzpH.s page 1
|
|||||||
264 .loc 1 187 10 discriminator 1 view .LVU58
|
264 .loc 1 187 10 discriminator 1 view .LVU58
|
||||||
265 0016 0346 mov r3, r0
|
265 0016 0346 mov r3, r0
|
||||||
266 0018 0028 cmp r0, #0
|
266 0018 0028 cmp r0, #0
|
||||||
ARM GAS /tmp/ccilYzpH.s page 9
|
ARM GAS /tmp/ccTSxLLU.s page 9
|
||||||
|
|
||||||
|
|
||||||
267 001a FAD1 bne .L21
|
267 001a FAD1 bne .L21
|
||||||
@ -538,7 +538,7 @@ ARM GAS /tmp/ccilYzpH.s page 1
|
|||||||
302 .cfi_offset 5, -8
|
302 .cfi_offset 5, -8
|
||||||
303 .cfi_offset 14, -4
|
303 .cfi_offset 14, -4
|
||||||
304 0002 89B0 sub sp, sp, #36
|
304 0002 89B0 sub sp, sp, #36
|
||||||
ARM GAS /tmp/ccilYzpH.s page 10
|
ARM GAS /tmp/ccTSxLLU.s page 10
|
||||||
|
|
||||||
|
|
||||||
305 .LCFI6:
|
305 .LCFI6:
|
||||||
@ -598,7 +598,7 @@ ARM GAS /tmp/ccilYzpH.s page 1
|
|||||||
342 .loc 1 226 5 is_stmt 1 view .LVU74
|
342 .loc 1 226 5 is_stmt 1 view .LVU74
|
||||||
343 .LVL29:
|
343 .LVL29:
|
||||||
227:Src/sd_diskio.c **** break;
|
227:Src/sd_diskio.c **** break;
|
||||||
ARM GAS /tmp/ccilYzpH.s page 11
|
ARM GAS /tmp/ccTSxLLU.s page 11
|
||||||
|
|
||||||
|
|
||||||
344 .loc 1 227 5 view .LVU75
|
344 .loc 1 227 5 view .LVU75
|
||||||
@ -658,7 +658,7 @@ ARM GAS /tmp/ccilYzpH.s page 1
|
|||||||
383 .L25:
|
383 .L25:
|
||||||
242:Src/sd_diskio.c ****
|
242:Src/sd_diskio.c ****
|
||||||
243:Src/sd_diskio.c **** default:
|
243:Src/sd_diskio.c **** default:
|
||||||
ARM GAS /tmp/ccilYzpH.s page 12
|
ARM GAS /tmp/ccTSxLLU.s page 12
|
||||||
|
|
||||||
|
|
||||||
244:Src/sd_diskio.c **** res = RES_PARERR;
|
244:Src/sd_diskio.c **** res = RES_PARERR;
|
||||||
@ -713,31 +713,31 @@ ARM GAS /tmp/ccilYzpH.s page 1
|
|||||||
432 .file 9 "Middlewares/Third_Party/FatFs/src/ff_gen_drv.h"
|
432 .file 9 "Middlewares/Third_Party/FatFs/src/ff_gen_drv.h"
|
||||||
433 .file 10 "Inc/bsp_driver_sd.h"
|
433 .file 10 "Inc/bsp_driver_sd.h"
|
||||||
434 .file 11 "Inc/sd_diskio.h"
|
434 .file 11 "Inc/sd_diskio.h"
|
||||||
ARM GAS /tmp/ccilYzpH.s page 13
|
ARM GAS /tmp/ccTSxLLU.s page 13
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 sd_diskio.c
|
*ABS*:0000000000000000 sd_diskio.c
|
||||||
/tmp/ccilYzpH.s:17 .text.SD_CheckStatus:0000000000000000 $t
|
/tmp/ccTSxLLU.s:17 .text.SD_CheckStatus:0000000000000000 $t
|
||||||
/tmp/ccilYzpH.s:24 .text.SD_CheckStatus:0000000000000000 SD_CheckStatus
|
/tmp/ccTSxLLU.s:24 .text.SD_CheckStatus:0000000000000000 SD_CheckStatus
|
||||||
/tmp/ccilYzpH.s:65 .text.SD_CheckStatus:0000000000000020 $d
|
/tmp/ccTSxLLU.s:65 .text.SD_CheckStatus:0000000000000020 $d
|
||||||
/tmp/ccilYzpH.s:70 .text.SD_initialize:0000000000000000 $t
|
/tmp/ccTSxLLU.s:70 .text.SD_initialize:0000000000000000 $t
|
||||||
/tmp/ccilYzpH.s:77 .text.SD_initialize:0000000000000000 SD_initialize
|
/tmp/ccTSxLLU.s:77 .text.SD_initialize:0000000000000000 SD_initialize
|
||||||
/tmp/ccilYzpH.s:122 .text.SD_initialize:0000000000000024 $d
|
/tmp/ccTSxLLU.s:122 .text.SD_initialize:0000000000000024 $d
|
||||||
/tmp/ccilYzpH.s:127 .text.SD_status:0000000000000000 $t
|
/tmp/ccTSxLLU.s:127 .text.SD_status:0000000000000000 $t
|
||||||
/tmp/ccilYzpH.s:134 .text.SD_status:0000000000000000 SD_status
|
/tmp/ccTSxLLU.s:134 .text.SD_status:0000000000000000 SD_status
|
||||||
/tmp/ccilYzpH.s:157 .text.SD_read:0000000000000000 $t
|
/tmp/ccTSxLLU.s:157 .text.SD_read:0000000000000000 $t
|
||||||
/tmp/ccilYzpH.s:164 .text.SD_read:0000000000000000 SD_read
|
/tmp/ccTSxLLU.s:164 .text.SD_read:0000000000000000 SD_read
|
||||||
/tmp/ccilYzpH.s:220 .text.SD_write:0000000000000000 $t
|
/tmp/ccTSxLLU.s:220 .text.SD_write:0000000000000000 $t
|
||||||
/tmp/ccilYzpH.s:227 .text.SD_write:0000000000000000 SD_write
|
/tmp/ccTSxLLU.s:227 .text.SD_write:0000000000000000 SD_write
|
||||||
/tmp/ccilYzpH.s:283 .text.SD_ioctl:0000000000000000 $t
|
/tmp/ccTSxLLU.s:283 .text.SD_ioctl:0000000000000000 $t
|
||||||
/tmp/ccilYzpH.s:290 .text.SD_ioctl:0000000000000000 SD_ioctl
|
/tmp/ccTSxLLU.s:290 .text.SD_ioctl:0000000000000000 SD_ioctl
|
||||||
/tmp/ccilYzpH.s:324 .text.SD_ioctl:0000000000000018 $d
|
/tmp/ccTSxLLU.s:324 .text.SD_ioctl:0000000000000018 $d
|
||||||
/tmp/ccilYzpH.s:328 .text.SD_ioctl:000000000000001c $t
|
/tmp/ccTSxLLU.s:328 .text.SD_ioctl:000000000000001c $t
|
||||||
/tmp/ccilYzpH.s:402 .text.SD_ioctl:0000000000000054 $d
|
/tmp/ccTSxLLU.s:402 .text.SD_ioctl:0000000000000054 $d
|
||||||
/tmp/ccilYzpH.s:417 .rodata.SD_Driver:0000000000000000 SD_Driver
|
/tmp/ccTSxLLU.s:417 .rodata.SD_Driver:0000000000000000 SD_Driver
|
||||||
/tmp/ccilYzpH.s:411 .data.Stat:0000000000000000 Stat
|
/tmp/ccTSxLLU.s:411 .data.Stat:0000000000000000 Stat
|
||||||
/tmp/ccilYzpH.s:414 .rodata.SD_Driver:0000000000000000 $d
|
/tmp/ccTSxLLU.s:414 .rodata.SD_Driver:0000000000000000 $d
|
||||||
|
|
||||||
UNDEFINED SYMBOLS
|
UNDEFINED SYMBOLS
|
||||||
BSP_SD_GetCardState
|
BSP_SD_GetCardState
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@ -28,7 +28,9 @@ build/stm32f7xx_hal.o: Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
||||||
Inc/stm32f7xx_hal_conf.h:
|
Inc/stm32f7xx_hal_conf.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
||||||
@ -61,3 +63,5 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/ccSoxuOo.s page 1
|
ARM GAS /tmp/ccxaDyMv.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** (+) Services HAL APIs
|
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** (+) Services HAL APIs
|
||||||
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c ****
|
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c ****
|
||||||
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** @endverbatim
|
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** @endverbatim
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 2
|
ARM GAS /tmp/ccxaDyMv.s page 2
|
||||||
|
|
||||||
|
|
||||||
32:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** ******************************************************************************
|
32:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** ******************************************************************************
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** */
|
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** */
|
||||||
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c ****
|
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c ****
|
||||||
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** /** @defgroup HAL_Exported_Functions_Group1 Initialization and de-initialization Functions
|
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** /** @defgroup HAL_Exported_Functions_Group1 Initialization and de-initialization Functions
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 3
|
ARM GAS /tmp/ccxaDyMv.s page 3
|
||||||
|
|
||||||
|
|
||||||
89:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** * @brief Initialization and de-initialization functions
|
89:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** * @brief Initialization and de-initialization functions
|
||||||
@ -178,7 +178,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** #endif /* ART_ACCELERATOR_ENABLE */
|
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** #endif /* ART_ACCELERATOR_ENABLE */
|
||||||
144:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c ****
|
144:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c ****
|
||||||
145:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** /* Configure Flash prefetch */
|
145:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** /* Configure Flash prefetch */
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 4
|
ARM GAS /tmp/ccxaDyMv.s page 4
|
||||||
|
|
||||||
|
|
||||||
146:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** #if (PREFETCH_ENABLE != 0U)
|
146:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** #if (PREFETCH_ENABLE != 0U)
|
||||||
@ -238,7 +238,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
29 .cfi_startproc
|
29 .cfi_startproc
|
||||||
30 @ args = 0, pretend = 0, frame = 0
|
30 @ args = 0, pretend = 0, frame = 0
|
||||||
31 @ frame_needed = 0, uses_anonymous_args = 0
|
31 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 5
|
ARM GAS /tmp/ccxaDyMv.s page 5
|
||||||
|
|
||||||
|
|
||||||
32 @ link register save eliminated.
|
32 @ link register save eliminated.
|
||||||
@ -298,7 +298,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
74 .cfi_def_cfa_offset 8
|
74 .cfi_def_cfa_offset 8
|
||||||
75 .cfi_offset 4, -8
|
75 .cfi_offset 4, -8
|
||||||
76 .cfi_offset 14, -4
|
76 .cfi_offset 14, -4
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 6
|
ARM GAS /tmp/ccxaDyMv.s page 6
|
||||||
|
|
||||||
|
|
||||||
171:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** __HAL_RCC_APB1_RELEASE_RESET();
|
171:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** __HAL_RCC_APB1_RELEASE_RESET();
|
||||||
@ -358,7 +358,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
119 .thumb_func
|
119 .thumb_func
|
||||||
120 .fpu fpv5-d16
|
120 .fpu fpv5-d16
|
||||||
122 HAL_InitTick:
|
122 HAL_InitTick:
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 7
|
ARM GAS /tmp/ccxaDyMv.s page 7
|
||||||
|
|
||||||
|
|
||||||
123 .LVL1:
|
123 .LVL1:
|
||||||
@ -418,7 +418,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
239:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** /* Configure the SysTick IRQ priority */
|
239:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** /* Configure the SysTick IRQ priority */
|
||||||
240:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** if (TickPriority < (1UL << __NVIC_PRIO_BITS))
|
240:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** if (TickPriority < (1UL << __NVIC_PRIO_BITS))
|
||||||
152 .loc 1 240 3 is_stmt 1 view .LVU25
|
152 .loc 1 240 3 is_stmt 1 view .LVU25
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 8
|
ARM GAS /tmp/ccxaDyMv.s page 8
|
||||||
|
|
||||||
|
|
||||||
153 .loc 1 240 6 is_stmt 0 view .LVU26
|
153 .loc 1 240 6 is_stmt 0 view .LVU26
|
||||||
@ -478,7 +478,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
192 .align 1
|
192 .align 1
|
||||||
193 .global HAL_Init
|
193 .global HAL_Init
|
||||||
194 .syntax unified
|
194 .syntax unified
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 9
|
ARM GAS /tmp/ccxaDyMv.s page 9
|
||||||
|
|
||||||
|
|
||||||
195 .thumb
|
195 .thumb
|
||||||
@ -538,7 +538,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
261:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** @verbatim
|
261:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** @verbatim
|
||||||
262:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** ===============================================================================
|
262:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** ===============================================================================
|
||||||
263:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** ##### HAL Control functions #####
|
263:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** ##### HAL Control functions #####
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 10
|
ARM GAS /tmp/ccxaDyMv.s page 10
|
||||||
|
|
||||||
|
|
||||||
264:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** ===============================================================================
|
264:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** ===============================================================================
|
||||||
@ -598,7 +598,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
263 .weak HAL_GetTick
|
263 .weak HAL_GetTick
|
||||||
264 .syntax unified
|
264 .syntax unified
|
||||||
265 .thumb
|
265 .thumb
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 11
|
ARM GAS /tmp/ccxaDyMv.s page 11
|
||||||
|
|
||||||
|
|
||||||
266 .thumb_func
|
266 .thumb_func
|
||||||
@ -658,7 +658,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
304 .loc 1 312 3 view .LVU51
|
304 .loc 1 312 3 view .LVU51
|
||||||
313:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** }
|
313:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** }
|
||||||
305 .loc 1 313 1 is_stmt 0 view .LVU52
|
305 .loc 1 313 1 is_stmt 0 view .LVU52
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 12
|
ARM GAS /tmp/ccxaDyMv.s page 12
|
||||||
|
|
||||||
|
|
||||||
306 0000 014B ldr r3, .L24
|
306 0000 014B ldr r3, .L24
|
||||||
@ -718,7 +718,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
348 .loc 1 321 21 view .LVU61
|
348 .loc 1 321 21 view .LVU61
|
||||||
349 000a 0020 movs r0, #0
|
349 000a 0020 movs r0, #0
|
||||||
350 .LVL11:
|
350 .LVL11:
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 13
|
ARM GAS /tmp/ccxaDyMv.s page 13
|
||||||
|
|
||||||
|
|
||||||
351 .L27:
|
351 .L27:
|
||||||
@ -778,7 +778,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
376 001e 1C70 strb r4, [r3]
|
376 001e 1C70 strb r4, [r3]
|
||||||
377 0020 F4E7 b .L27
|
377 0020 F4E7 b .L27
|
||||||
378 .L32:
|
378 .L32:
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 14
|
ARM GAS /tmp/ccxaDyMv.s page 14
|
||||||
|
|
||||||
|
|
||||||
379 0022 00BF .align 2
|
379 0022 00BF .align 2
|
||||||
@ -838,7 +838,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
359:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** * on variable incremented.
|
359:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** * on variable incremented.
|
||||||
360:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** * @note In the default implementation , SysTick timer is the source of time base.
|
360:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** * @note In the default implementation , SysTick timer is the source of time base.
|
||||||
361:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** * It is used to generate interrupts at regular time intervals where uwTick
|
361:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** * It is used to generate interrupts at regular time intervals where uwTick
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 15
|
ARM GAS /tmp/ccxaDyMv.s page 15
|
||||||
|
|
||||||
|
|
||||||
362:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** * is incremented.
|
362:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** * is incremented.
|
||||||
@ -898,7 +898,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
379:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** {
|
379:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** {
|
||||||
458 .loc 1 379 9 discriminator 1 view .LVU89
|
458 .loc 1 379 9 discriminator 1 view .LVU89
|
||||||
379:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** {
|
379:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** {
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 16
|
ARM GAS /tmp/ccxaDyMv.s page 16
|
||||||
|
|
||||||
|
|
||||||
459 .loc 1 379 11 is_stmt 0 discriminator 1 view .LVU90
|
459 .loc 1 379 11 is_stmt 0 discriminator 1 view .LVU90
|
||||||
@ -958,7 +958,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
497 0006 23F00203 bic r3, r3, #2
|
497 0006 23F00203 bic r3, r3, #2
|
||||||
498 000a 1361 str r3, [r2, #16]
|
498 000a 1361 str r3, [r2, #16]
|
||||||
398:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** }
|
398:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** }
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 17
|
ARM GAS /tmp/ccxaDyMv.s page 17
|
||||||
|
|
||||||
|
|
||||||
499 .loc 1 398 1 view .LVU98
|
499 .loc 1 398 1 view .LVU98
|
||||||
@ -1018,7 +1018,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
416:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** /**
|
416:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** /**
|
||||||
417:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** * @brief Returns the HAL revision
|
417:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** * @brief Returns the HAL revision
|
||||||
418:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** * @retval version : 0xXYZR (8bits for each decimal, R for RC)
|
418:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** * @retval version : 0xXYZR (8bits for each decimal, R for RC)
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 18
|
ARM GAS /tmp/ccxaDyMv.s page 18
|
||||||
|
|
||||||
|
|
||||||
419:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** */
|
419:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** */
|
||||||
@ -1078,7 +1078,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
582 .cfi_endproc
|
582 .cfi_endproc
|
||||||
583 .LFE155:
|
583 .LFE155:
|
||||||
585 .section .text.HAL_GetDEVID,"ax",%progbits
|
585 .section .text.HAL_GetDEVID,"ax",%progbits
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 19
|
ARM GAS /tmp/ccxaDyMv.s page 19
|
||||||
|
|
||||||
|
|
||||||
586 .align 1
|
586 .align 1
|
||||||
@ -1138,7 +1138,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
627 @ frame_needed = 0, uses_anonymous_args = 0
|
627 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
628 @ link register save eliminated.
|
628 @ link register save eliminated.
|
||||||
449:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** return(READ_REG(*((uint32_t *)UID_BASE)));
|
449:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** return(READ_REG(*((uint32_t *)UID_BASE)));
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 20
|
ARM GAS /tmp/ccxaDyMv.s page 20
|
||||||
|
|
||||||
|
|
||||||
629 .loc 1 449 3 view .LVU115
|
629 .loc 1 449 3 view .LVU115
|
||||||
@ -1198,7 +1198,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
677 .LFB159:
|
677 .LFB159:
|
||||||
460:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c ****
|
460:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c ****
|
||||||
461:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** /**
|
461:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** /**
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 21
|
ARM GAS /tmp/ccxaDyMv.s page 21
|
||||||
|
|
||||||
|
|
||||||
462:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** * @brief Returns third word of the unique device identifier (UID based on 96 bits)
|
462:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** * @brief Returns third word of the unique device identifier (UID based on 96 bits)
|
||||||
@ -1258,7 +1258,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
718 .align 2
|
718 .align 2
|
||||||
719 .L63:
|
719 .L63:
|
||||||
720 000c 002004E0 .word -536600576
|
720 000c 002004E0 .word -536600576
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 22
|
ARM GAS /tmp/ccxaDyMv.s page 22
|
||||||
|
|
||||||
|
|
||||||
721 .cfi_endproc
|
721 .cfi_endproc
|
||||||
@ -1318,7 +1318,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
763 .loc 1 493 1 is_stmt 1 view -0
|
763 .loc 1 493 1 is_stmt 1 view -0
|
||||||
764 .cfi_startproc
|
764 .cfi_startproc
|
||||||
765 @ args = 0, pretend = 0, frame = 0
|
765 @ args = 0, pretend = 0, frame = 0
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 23
|
ARM GAS /tmp/ccxaDyMv.s page 23
|
||||||
|
|
||||||
|
|
||||||
766 @ frame_needed = 0, uses_anonymous_args = 0
|
766 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
@ -1378,7 +1378,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
812 .align 1
|
812 .align 1
|
||||||
813 .global HAL_DBGMCU_EnableDBGStandbyMode
|
813 .global HAL_DBGMCU_EnableDBGStandbyMode
|
||||||
814 .syntax unified
|
814 .syntax unified
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 24
|
ARM GAS /tmp/ccxaDyMv.s page 24
|
||||||
|
|
||||||
|
|
||||||
815 .thumb
|
815 .thumb
|
||||||
@ -1438,7 +1438,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
855 .loc 1 521 3 view .LVU139
|
855 .loc 1 521 3 view .LVU139
|
||||||
856 0000 024A ldr r2, .L78
|
856 0000 024A ldr r2, .L78
|
||||||
857 0002 5368 ldr r3, [r2, #4]
|
857 0002 5368 ldr r3, [r2, #4]
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 25
|
ARM GAS /tmp/ccxaDyMv.s page 25
|
||||||
|
|
||||||
|
|
||||||
858 0004 23F00403 bic r3, r3, #4
|
858 0004 23F00403 bic r3, r3, #4
|
||||||
@ -1498,7 +1498,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
903 .thumb
|
903 .thumb
|
||||||
904 .thumb_func
|
904 .thumb_func
|
||||||
905 .fpu fpv5-d16
|
905 .fpu fpv5-d16
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 26
|
ARM GAS /tmp/ccxaDyMv.s page 26
|
||||||
|
|
||||||
|
|
||||||
907 HAL_DisableCompensationCell:
|
907 HAL_DisableCompensationCell:
|
||||||
@ -1558,7 +1558,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
941 @ args = 0, pretend = 0, frame = 0
|
941 @ args = 0, pretend = 0, frame = 0
|
||||||
942 @ frame_needed = 0, uses_anonymous_args = 0
|
942 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
943 @ link register save eliminated.
|
943 @ link register save eliminated.
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 27
|
ARM GAS /tmp/ccxaDyMv.s page 27
|
||||||
|
|
||||||
|
|
||||||
556:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** SYSCFG->MEMRMP |= SYSCFG_MEMRMP_SWP_FMC_0;
|
556:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** SYSCFG->MEMRMP |= SYSCFG_MEMRMP_SWP_FMC_0;
|
||||||
@ -1618,7 +1618,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
985 000c 00380140 .word 1073821696
|
985 000c 00380140 .word 1073821696
|
||||||
986 .cfi_endproc
|
986 .cfi_endproc
|
||||||
987 .LFE169:
|
987 .LFE169:
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 28
|
ARM GAS /tmp/ccxaDyMv.s page 28
|
||||||
|
|
||||||
|
|
||||||
989 .section .text.HAL_EnableMemorySwappingBank,"ax",%progbits
|
989 .section .text.HAL_EnableMemorySwappingBank,"ax",%progbits
|
||||||
@ -1678,7 +1678,7 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
589:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** * @brief Disable the Internal FLASH Bank Swapping.
|
589:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** * @brief Disable the Internal FLASH Bank Swapping.
|
||||||
590:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** *
|
590:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** *
|
||||||
591:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** * @note This function can be used only for STM32F77xx/STM32F76xx devices.
|
591:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** * @note This function can be used only for STM32F77xx/STM32F76xx devices.
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 29
|
ARM GAS /tmp/ccxaDyMv.s page 29
|
||||||
|
|
||||||
|
|
||||||
592:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** *
|
592:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c **** *
|
||||||
@ -1735,107 +1735,107 @@ ARM GAS /tmp/ccSoxuOo.s page 1
|
|||||||
1076 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h"
|
1076 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h"
|
||||||
1077 .file 7 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/system_stm32f7xx.h"
|
1077 .file 7 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/system_stm32f7xx.h"
|
||||||
1078 .file 8 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cortex.h"
|
1078 .file 8 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cortex.h"
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 30
|
ARM GAS /tmp/ccxaDyMv.s page 30
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 stm32f7xx_hal.c
|
*ABS*:0000000000000000 stm32f7xx_hal.c
|
||||||
/tmp/ccSoxuOo.s:17 .text.HAL_MspInit:0000000000000000 $t
|
/tmp/ccxaDyMv.s:17 .text.HAL_MspInit:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:25 .text.HAL_MspInit:0000000000000000 HAL_MspInit
|
/tmp/ccxaDyMv.s:25 .text.HAL_MspInit:0000000000000000 HAL_MspInit
|
||||||
/tmp/ccSoxuOo.s:39 .text.HAL_MspDeInit:0000000000000000 $t
|
/tmp/ccxaDyMv.s:39 .text.HAL_MspDeInit:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:46 .text.HAL_MspDeInit:0000000000000000 HAL_MspDeInit
|
/tmp/ccxaDyMv.s:46 .text.HAL_MspDeInit:0000000000000000 HAL_MspDeInit
|
||||||
/tmp/ccSoxuOo.s:59 .text.HAL_DeInit:0000000000000000 $t
|
/tmp/ccxaDyMv.s:59 .text.HAL_DeInit:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:66 .text.HAL_DeInit:0000000000000000 HAL_DeInit
|
/tmp/ccxaDyMv.s:66 .text.HAL_DeInit:0000000000000000 HAL_DeInit
|
||||||
/tmp/ccSoxuOo.s:110 .text.HAL_DeInit:0000000000000028 $d
|
/tmp/ccxaDyMv.s:110 .text.HAL_DeInit:0000000000000028 $d
|
||||||
/tmp/ccSoxuOo.s:115 .text.HAL_InitTick:0000000000000000 $t
|
/tmp/ccxaDyMv.s:115 .text.HAL_InitTick:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:122 .text.HAL_InitTick:0000000000000000 HAL_InitTick
|
/tmp/ccxaDyMv.s:122 .text.HAL_InitTick:0000000000000000 HAL_InitTick
|
||||||
/tmp/ccSoxuOo.s:185 .text.HAL_InitTick:0000000000000040 $d
|
/tmp/ccxaDyMv.s:185 .text.HAL_InitTick:0000000000000040 $d
|
||||||
/tmp/ccSoxuOo.s:192 .text.HAL_Init:0000000000000000 $t
|
/tmp/ccxaDyMv.s:192 .text.HAL_Init:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:199 .text.HAL_Init:0000000000000000 HAL_Init
|
/tmp/ccxaDyMv.s:199 .text.HAL_Init:0000000000000000 HAL_Init
|
||||||
/tmp/ccSoxuOo.s:229 .text.HAL_IncTick:0000000000000000 $t
|
/tmp/ccxaDyMv.s:229 .text.HAL_IncTick:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:236 .text.HAL_IncTick:0000000000000000 HAL_IncTick
|
/tmp/ccxaDyMv.s:236 .text.HAL_IncTick:0000000000000000 HAL_IncTick
|
||||||
/tmp/ccSoxuOo.s:256 .text.HAL_IncTick:0000000000000010 $d
|
/tmp/ccxaDyMv.s:256 .text.HAL_IncTick:0000000000000010 $d
|
||||||
/tmp/ccSoxuOo.s:262 .text.HAL_GetTick:0000000000000000 $t
|
/tmp/ccxaDyMv.s:262 .text.HAL_GetTick:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:269 .text.HAL_GetTick:0000000000000000 HAL_GetTick
|
/tmp/ccxaDyMv.s:269 .text.HAL_GetTick:0000000000000000 HAL_GetTick
|
||||||
/tmp/ccSoxuOo.s:285 .text.HAL_GetTick:0000000000000008 $d
|
/tmp/ccxaDyMv.s:285 .text.HAL_GetTick:0000000000000008 $d
|
||||||
/tmp/ccSoxuOo.s:290 .text.HAL_GetTickPrio:0000000000000000 $t
|
/tmp/ccxaDyMv.s:290 .text.HAL_GetTickPrio:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:297 .text.HAL_GetTickPrio:0000000000000000 HAL_GetTickPrio
|
/tmp/ccxaDyMv.s:297 .text.HAL_GetTickPrio:0000000000000000 HAL_GetTickPrio
|
||||||
/tmp/ccSoxuOo.s:312 .text.HAL_GetTickPrio:0000000000000008 $d
|
/tmp/ccxaDyMv.s:312 .text.HAL_GetTickPrio:0000000000000008 $d
|
||||||
/tmp/ccSoxuOo.s:317 .text.HAL_SetTickFreq:0000000000000000 $t
|
/tmp/ccxaDyMv.s:317 .text.HAL_SetTickFreq:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:324 .text.HAL_SetTickFreq:0000000000000000 HAL_SetTickFreq
|
/tmp/ccxaDyMv.s:324 .text.HAL_SetTickFreq:0000000000000000 HAL_SetTickFreq
|
||||||
/tmp/ccSoxuOo.s:381 .text.HAL_SetTickFreq:0000000000000024 $d
|
/tmp/ccxaDyMv.s:381 .text.HAL_SetTickFreq:0000000000000024 $d
|
||||||
/tmp/ccSoxuOo.s:387 .text.HAL_GetTickFreq:0000000000000000 $t
|
/tmp/ccxaDyMv.s:387 .text.HAL_GetTickFreq:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:394 .text.HAL_GetTickFreq:0000000000000000 HAL_GetTickFreq
|
/tmp/ccxaDyMv.s:394 .text.HAL_GetTickFreq:0000000000000000 HAL_GetTickFreq
|
||||||
/tmp/ccSoxuOo.s:409 .text.HAL_GetTickFreq:0000000000000008 $d
|
/tmp/ccxaDyMv.s:409 .text.HAL_GetTickFreq:0000000000000008 $d
|
||||||
/tmp/ccSoxuOo.s:414 .text.HAL_Delay:0000000000000000 $t
|
/tmp/ccxaDyMv.s:414 .text.HAL_Delay:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:421 .text.HAL_Delay:0000000000000000 HAL_Delay
|
/tmp/ccxaDyMv.s:421 .text.HAL_Delay:0000000000000000 HAL_Delay
|
||||||
/tmp/ccSoxuOo.s:474 .text.HAL_Delay:0000000000000024 $d
|
/tmp/ccxaDyMv.s:474 .text.HAL_Delay:0000000000000024 $d
|
||||||
/tmp/ccSoxuOo.s:479 .text.HAL_SuspendTick:0000000000000000 $t
|
/tmp/ccxaDyMv.s:479 .text.HAL_SuspendTick:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:486 .text.HAL_SuspendTick:0000000000000000 HAL_SuspendTick
|
/tmp/ccxaDyMv.s:486 .text.HAL_SuspendTick:0000000000000000 HAL_SuspendTick
|
||||||
/tmp/ccSoxuOo.s:505 .text.HAL_ResumeTick:0000000000000000 $t
|
/tmp/ccxaDyMv.s:505 .text.HAL_ResumeTick:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:512 .text.HAL_ResumeTick:0000000000000000 HAL_ResumeTick
|
/tmp/ccxaDyMv.s:512 .text.HAL_ResumeTick:0000000000000000 HAL_ResumeTick
|
||||||
/tmp/ccSoxuOo.s:531 .text.HAL_GetHalVersion:0000000000000000 $t
|
/tmp/ccxaDyMv.s:531 .text.HAL_GetHalVersion:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:538 .text.HAL_GetHalVersion:0000000000000000 HAL_GetHalVersion
|
/tmp/ccxaDyMv.s:538 .text.HAL_GetHalVersion:0000000000000000 HAL_GetHalVersion
|
||||||
/tmp/ccSoxuOo.s:552 .text.HAL_GetHalVersion:0000000000000004 $d
|
/tmp/ccxaDyMv.s:552 .text.HAL_GetHalVersion:0000000000000004 $d
|
||||||
/tmp/ccSoxuOo.s:557 .text.HAL_GetREVID:0000000000000000 $t
|
/tmp/ccxaDyMv.s:557 .text.HAL_GetREVID:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:564 .text.HAL_GetREVID:0000000000000000 HAL_GetREVID
|
/tmp/ccxaDyMv.s:564 .text.HAL_GetREVID:0000000000000000 HAL_GetREVID
|
||||||
/tmp/ccSoxuOo.s:581 .text.HAL_GetREVID:0000000000000008 $d
|
/tmp/ccxaDyMv.s:581 .text.HAL_GetREVID:0000000000000008 $d
|
||||||
/tmp/ccSoxuOo.s:586 .text.HAL_GetDEVID:0000000000000000 $t
|
/tmp/ccxaDyMv.s:586 .text.HAL_GetDEVID:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:593 .text.HAL_GetDEVID:0000000000000000 HAL_GetDEVID
|
/tmp/ccxaDyMv.s:593 .text.HAL_GetDEVID:0000000000000000 HAL_GetDEVID
|
||||||
/tmp/ccSoxuOo.s:610 .text.HAL_GetDEVID:000000000000000c $d
|
/tmp/ccxaDyMv.s:610 .text.HAL_GetDEVID:000000000000000c $d
|
||||||
/tmp/ccSoxuOo.s:615 .text.HAL_GetUIDw0:0000000000000000 $t
|
/tmp/ccxaDyMv.s:615 .text.HAL_GetUIDw0:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:622 .text.HAL_GetUIDw0:0000000000000000 HAL_GetUIDw0
|
/tmp/ccxaDyMv.s:622 .text.HAL_GetUIDw0:0000000000000000 HAL_GetUIDw0
|
||||||
/tmp/ccSoxuOo.s:637 .text.HAL_GetUIDw0:0000000000000008 $d
|
/tmp/ccxaDyMv.s:637 .text.HAL_GetUIDw0:0000000000000008 $d
|
||||||
/tmp/ccSoxuOo.s:642 .text.HAL_GetUIDw1:0000000000000000 $t
|
/tmp/ccxaDyMv.s:642 .text.HAL_GetUIDw1:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:649 .text.HAL_GetUIDw1:0000000000000000 HAL_GetUIDw1
|
/tmp/ccxaDyMv.s:649 .text.HAL_GetUIDw1:0000000000000000 HAL_GetUIDw1
|
||||||
/tmp/ccSoxuOo.s:664 .text.HAL_GetUIDw1:0000000000000008 $d
|
/tmp/ccxaDyMv.s:664 .text.HAL_GetUIDw1:0000000000000008 $d
|
||||||
/tmp/ccSoxuOo.s:669 .text.HAL_GetUIDw2:0000000000000000 $t
|
/tmp/ccxaDyMv.s:669 .text.HAL_GetUIDw2:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:676 .text.HAL_GetUIDw2:0000000000000000 HAL_GetUIDw2
|
/tmp/ccxaDyMv.s:676 .text.HAL_GetUIDw2:0000000000000000 HAL_GetUIDw2
|
||||||
/tmp/ccSoxuOo.s:691 .text.HAL_GetUIDw2:0000000000000008 $d
|
/tmp/ccxaDyMv.s:691 .text.HAL_GetUIDw2:0000000000000008 $d
|
||||||
/tmp/ccSoxuOo.s:696 .text.HAL_DBGMCU_EnableDBGSleepMode:0000000000000000 $t
|
/tmp/ccxaDyMv.s:696 .text.HAL_DBGMCU_EnableDBGSleepMode:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:703 .text.HAL_DBGMCU_EnableDBGSleepMode:0000000000000000 HAL_DBGMCU_EnableDBGSleepMode
|
/tmp/ccxaDyMv.s:703 .text.HAL_DBGMCU_EnableDBGSleepMode:0000000000000000 HAL_DBGMCU_EnableDBGSleepMode
|
||||||
/tmp/ccSoxuOo.s:720 .text.HAL_DBGMCU_EnableDBGSleepMode:000000000000000c $d
|
/tmp/ccxaDyMv.s:720 .text.HAL_DBGMCU_EnableDBGSleepMode:000000000000000c $d
|
||||||
ARM GAS /tmp/ccSoxuOo.s page 31
|
ARM GAS /tmp/ccxaDyMv.s page 31
|
||||||
|
|
||||||
|
|
||||||
/tmp/ccSoxuOo.s:725 .text.HAL_DBGMCU_DisableDBGSleepMode:0000000000000000 $t
|
/tmp/ccxaDyMv.s:725 .text.HAL_DBGMCU_DisableDBGSleepMode:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:732 .text.HAL_DBGMCU_DisableDBGSleepMode:0000000000000000 HAL_DBGMCU_DisableDBGSleepMode
|
/tmp/ccxaDyMv.s:732 .text.HAL_DBGMCU_DisableDBGSleepMode:0000000000000000 HAL_DBGMCU_DisableDBGSleepMode
|
||||||
/tmp/ccSoxuOo.s:749 .text.HAL_DBGMCU_DisableDBGSleepMode:000000000000000c $d
|
/tmp/ccxaDyMv.s:749 .text.HAL_DBGMCU_DisableDBGSleepMode:000000000000000c $d
|
||||||
/tmp/ccSoxuOo.s:754 .text.HAL_DBGMCU_EnableDBGStopMode:0000000000000000 $t
|
/tmp/ccxaDyMv.s:754 .text.HAL_DBGMCU_EnableDBGStopMode:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:761 .text.HAL_DBGMCU_EnableDBGStopMode:0000000000000000 HAL_DBGMCU_EnableDBGStopMode
|
/tmp/ccxaDyMv.s:761 .text.HAL_DBGMCU_EnableDBGStopMode:0000000000000000 HAL_DBGMCU_EnableDBGStopMode
|
||||||
/tmp/ccSoxuOo.s:778 .text.HAL_DBGMCU_EnableDBGStopMode:000000000000000c $d
|
/tmp/ccxaDyMv.s:778 .text.HAL_DBGMCU_EnableDBGStopMode:000000000000000c $d
|
||||||
/tmp/ccSoxuOo.s:783 .text.HAL_DBGMCU_DisableDBGStopMode:0000000000000000 $t
|
/tmp/ccxaDyMv.s:783 .text.HAL_DBGMCU_DisableDBGStopMode:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:790 .text.HAL_DBGMCU_DisableDBGStopMode:0000000000000000 HAL_DBGMCU_DisableDBGStopMode
|
/tmp/ccxaDyMv.s:790 .text.HAL_DBGMCU_DisableDBGStopMode:0000000000000000 HAL_DBGMCU_DisableDBGStopMode
|
||||||
/tmp/ccSoxuOo.s:807 .text.HAL_DBGMCU_DisableDBGStopMode:000000000000000c $d
|
/tmp/ccxaDyMv.s:807 .text.HAL_DBGMCU_DisableDBGStopMode:000000000000000c $d
|
||||||
/tmp/ccSoxuOo.s:812 .text.HAL_DBGMCU_EnableDBGStandbyMode:0000000000000000 $t
|
/tmp/ccxaDyMv.s:812 .text.HAL_DBGMCU_EnableDBGStandbyMode:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:819 .text.HAL_DBGMCU_EnableDBGStandbyMode:0000000000000000 HAL_DBGMCU_EnableDBGStandbyMode
|
/tmp/ccxaDyMv.s:819 .text.HAL_DBGMCU_EnableDBGStandbyMode:0000000000000000 HAL_DBGMCU_EnableDBGStandbyMode
|
||||||
/tmp/ccSoxuOo.s:836 .text.HAL_DBGMCU_EnableDBGStandbyMode:000000000000000c $d
|
/tmp/ccxaDyMv.s:836 .text.HAL_DBGMCU_EnableDBGStandbyMode:000000000000000c $d
|
||||||
/tmp/ccSoxuOo.s:841 .text.HAL_DBGMCU_DisableDBGStandbyMode:0000000000000000 $t
|
/tmp/ccxaDyMv.s:841 .text.HAL_DBGMCU_DisableDBGStandbyMode:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:848 .text.HAL_DBGMCU_DisableDBGStandbyMode:0000000000000000 HAL_DBGMCU_DisableDBGStandbyMode
|
/tmp/ccxaDyMv.s:848 .text.HAL_DBGMCU_DisableDBGStandbyMode:0000000000000000 HAL_DBGMCU_DisableDBGStandbyMode
|
||||||
/tmp/ccSoxuOo.s:865 .text.HAL_DBGMCU_DisableDBGStandbyMode:000000000000000c $d
|
/tmp/ccxaDyMv.s:865 .text.HAL_DBGMCU_DisableDBGStandbyMode:000000000000000c $d
|
||||||
/tmp/ccSoxuOo.s:870 .text.HAL_EnableCompensationCell:0000000000000000 $t
|
/tmp/ccxaDyMv.s:870 .text.HAL_EnableCompensationCell:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:877 .text.HAL_EnableCompensationCell:0000000000000000 HAL_EnableCompensationCell
|
/tmp/ccxaDyMv.s:877 .text.HAL_EnableCompensationCell:0000000000000000 HAL_EnableCompensationCell
|
||||||
/tmp/ccSoxuOo.s:895 .text.HAL_EnableCompensationCell:000000000000000c $d
|
/tmp/ccxaDyMv.s:895 .text.HAL_EnableCompensationCell:000000000000000c $d
|
||||||
/tmp/ccSoxuOo.s:900 .text.HAL_DisableCompensationCell:0000000000000000 $t
|
/tmp/ccxaDyMv.s:900 .text.HAL_DisableCompensationCell:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:907 .text.HAL_DisableCompensationCell:0000000000000000 HAL_DisableCompensationCell
|
/tmp/ccxaDyMv.s:907 .text.HAL_DisableCompensationCell:0000000000000000 HAL_DisableCompensationCell
|
||||||
/tmp/ccSoxuOo.s:925 .text.HAL_DisableCompensationCell:000000000000000c $d
|
/tmp/ccxaDyMv.s:925 .text.HAL_DisableCompensationCell:000000000000000c $d
|
||||||
/tmp/ccSoxuOo.s:930 .text.HAL_EnableFMCMemorySwapping:0000000000000000 $t
|
/tmp/ccxaDyMv.s:930 .text.HAL_EnableFMCMemorySwapping:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:937 .text.HAL_EnableFMCMemorySwapping:0000000000000000 HAL_EnableFMCMemorySwapping
|
/tmp/ccxaDyMv.s:937 .text.HAL_EnableFMCMemorySwapping:0000000000000000 HAL_EnableFMCMemorySwapping
|
||||||
/tmp/ccSoxuOo.s:955 .text.HAL_EnableFMCMemorySwapping:000000000000000c $d
|
/tmp/ccxaDyMv.s:955 .text.HAL_EnableFMCMemorySwapping:000000000000000c $d
|
||||||
/tmp/ccSoxuOo.s:960 .text.HAL_DisableFMCMemorySwapping:0000000000000000 $t
|
/tmp/ccxaDyMv.s:960 .text.HAL_DisableFMCMemorySwapping:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:967 .text.HAL_DisableFMCMemorySwapping:0000000000000000 HAL_DisableFMCMemorySwapping
|
/tmp/ccxaDyMv.s:967 .text.HAL_DisableFMCMemorySwapping:0000000000000000 HAL_DisableFMCMemorySwapping
|
||||||
/tmp/ccSoxuOo.s:985 .text.HAL_DisableFMCMemorySwapping:000000000000000c $d
|
/tmp/ccxaDyMv.s:985 .text.HAL_DisableFMCMemorySwapping:000000000000000c $d
|
||||||
/tmp/ccSoxuOo.s:990 .text.HAL_EnableMemorySwappingBank:0000000000000000 $t
|
/tmp/ccxaDyMv.s:990 .text.HAL_EnableMemorySwappingBank:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:997 .text.HAL_EnableMemorySwappingBank:0000000000000000 HAL_EnableMemorySwappingBank
|
/tmp/ccxaDyMv.s:997 .text.HAL_EnableMemorySwappingBank:0000000000000000 HAL_EnableMemorySwappingBank
|
||||||
/tmp/ccSoxuOo.s:1014 .text.HAL_EnableMemorySwappingBank:000000000000000c $d
|
/tmp/ccxaDyMv.s:1014 .text.HAL_EnableMemorySwappingBank:000000000000000c $d
|
||||||
/tmp/ccSoxuOo.s:1019 .text.HAL_DisableMemorySwappingBank:0000000000000000 $t
|
/tmp/ccxaDyMv.s:1019 .text.HAL_DisableMemorySwappingBank:0000000000000000 $t
|
||||||
/tmp/ccSoxuOo.s:1026 .text.HAL_DisableMemorySwappingBank:0000000000000000 HAL_DisableMemorySwappingBank
|
/tmp/ccxaDyMv.s:1026 .text.HAL_DisableMemorySwappingBank:0000000000000000 HAL_DisableMemorySwappingBank
|
||||||
/tmp/ccSoxuOo.s:1043 .text.HAL_DisableMemorySwappingBank:000000000000000c $d
|
/tmp/ccxaDyMv.s:1043 .text.HAL_DisableMemorySwappingBank:000000000000000c $d
|
||||||
/tmp/ccSoxuOo.s:1061 .data.uwTickFreq:0000000000000000 uwTickFreq
|
/tmp/ccxaDyMv.s:1061 .data.uwTickFreq:0000000000000000 uwTickFreq
|
||||||
/tmp/ccSoxuOo.s:1068 .data.uwTickPrio:0000000000000000 uwTickPrio
|
/tmp/ccxaDyMv.s:1068 .data.uwTickPrio:0000000000000000 uwTickPrio
|
||||||
/tmp/ccSoxuOo.s:1055 .bss.uwTick:0000000000000000 uwTick
|
/tmp/ccxaDyMv.s:1055 .bss.uwTick:0000000000000000 uwTick
|
||||||
/tmp/ccSoxuOo.s:1051 .bss.uwTick:0000000000000000 $d
|
/tmp/ccxaDyMv.s:1051 .bss.uwTick:0000000000000000 $d
|
||||||
/tmp/ccSoxuOo.s:1064 .data.uwTickPrio:0000000000000000 $d
|
/tmp/ccxaDyMv.s:1064 .data.uwTickPrio:0000000000000000 $d
|
||||||
|
|
||||||
UNDEFINED SYMBOLS
|
UNDEFINED SYMBOLS
|
||||||
HAL_SYSTICK_Config
|
HAL_SYSTICK_Config
|
||||||
|
|||||||
Binary file not shown.
@ -29,7 +29,9 @@ build/stm32f7xx_hal_adc.o: \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
||||||
Inc/stm32f7xx_hal_conf.h:
|
Inc/stm32f7xx_hal_conf.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
||||||
@ -62,3 +64,5 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/cc6QBWTk.s page 1
|
ARM GAS /tmp/cc4Rricp.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** and in case of analog watchdog or overrun events
|
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** and in case of analog watchdog or overrun events
|
||||||
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (#) Single and continuous conversion modes.
|
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (#) Single and continuous conversion modes.
|
||||||
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (#) Scan mode for automatic conversion of channel 0 to channel x.
|
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (#) Scan mode for automatic conversion of channel 0 to channel x.
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 2
|
ARM GAS /tmp/cc4Rricp.s page 2
|
||||||
|
|
||||||
|
|
||||||
32:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (#) Data alignment with in-built data coherency.
|
32:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (#) Data alignment with in-built data coherency.
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (#) Optionally, configure the analog watchdog parameters (channels
|
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (#) Optionally, configure the analog watchdog parameters (channels
|
||||||
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** monitored, thresholds, ...) using function HAL_ADC_AnalogWDGConfig().
|
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** monitored, thresholds, ...) using function HAL_ADC_AnalogWDGConfig().
|
||||||
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 3
|
ARM GAS /tmp/cc4Rricp.s page 3
|
||||||
|
|
||||||
|
|
||||||
89:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (#) Optionally, for devices with several ADC instances: configure the
|
89:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (#) Optionally, for devices with several ADC instances: configure the
|
||||||
@ -178,7 +178,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** *** Callback functions ***
|
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** *** Callback functions ***
|
||||||
144:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** ==============================
|
144:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** ==============================
|
||||||
145:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** [..]
|
145:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** [..]
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 4
|
ARM GAS /tmp/cc4Rricp.s page 4
|
||||||
|
|
||||||
|
|
||||||
146:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (@) Callback functions must be implemented in user program:
|
146:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (@) Callback functions must be implemented in user program:
|
||||||
@ -238,7 +238,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
200:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (+) MspInitCallback : ADC Msp Init callback
|
200:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (+) MspInitCallback : ADC Msp Init callback
|
||||||
201:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (+) MspDeInitCallback : ADC Msp DeInit callback
|
201:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (+) MspDeInitCallback : ADC Msp DeInit callback
|
||||||
202:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** This function takes as parameters the HAL peripheral handle, the Callback ID
|
202:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** This function takes as parameters the HAL peripheral handle, the Callback ID
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 5
|
ARM GAS /tmp/cc4Rricp.s page 5
|
||||||
|
|
||||||
|
|
||||||
203:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** and a pointer to the user callback function.
|
203:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** and a pointer to the user callback function.
|
||||||
@ -298,7 +298,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
257:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Includes ------------------------------------------------------------------*/
|
257:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Includes ------------------------------------------------------------------*/
|
||||||
258:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** #include "stm32f7xx_hal.h"
|
258:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** #include "stm32f7xx_hal.h"
|
||||||
259:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
259:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 6
|
ARM GAS /tmp/cc4Rricp.s page 6
|
||||||
|
|
||||||
|
|
||||||
260:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /** @addtogroup STM32F7xx_HAL_Driver
|
260:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /** @addtogroup STM32F7xx_HAL_Driver
|
||||||
@ -358,7 +358,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
314:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * channels group (scan mode activation, continuous mode activation,
|
314:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * channels group (scan mode activation, continuous mode activation,
|
||||||
315:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * External trigger source and edge, DMA continuous request after the
|
315:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * External trigger source and edge, DMA continuous request after the
|
||||||
316:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * last transfer and End of conversion selection).
|
316:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * last transfer and End of conversion selection).
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 7
|
ARM GAS /tmp/cc4Rricp.s page 7
|
||||||
|
|
||||||
|
|
||||||
317:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** *
|
317:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** *
|
||||||
@ -418,7 +418,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
371:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Initialize ADC error code */
|
371:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Initialize ADC error code */
|
||||||
372:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** ADC_CLEAR_ERRORCODE(hadc);
|
372:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** ADC_CLEAR_ERRORCODE(hadc);
|
||||||
373:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
373:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 8
|
ARM GAS /tmp/cc4Rricp.s page 8
|
||||||
|
|
||||||
|
|
||||||
374:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Allocate lock resource and initialize it */
|
374:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Allocate lock resource and initialize it */
|
||||||
@ -478,7 +478,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
428:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
428:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
429:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Set ADC state */
|
429:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Set ADC state */
|
||||||
430:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** SET_BIT(hadc->State, HAL_ADC_STATE_BUSY_INTERNAL);
|
430:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** SET_BIT(hadc->State, HAL_ADC_STATE_BUSY_INTERNAL);
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 9
|
ARM GAS /tmp/cc4Rricp.s page 9
|
||||||
|
|
||||||
|
|
||||||
431:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
431:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
@ -538,7 +538,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
485:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * the configuration information for the specified ADC.
|
485:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * the configuration information for the specified ADC.
|
||||||
486:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * @retval None
|
486:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * @retval None
|
||||||
487:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** */
|
487:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** */
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 10
|
ARM GAS /tmp/cc4Rricp.s page 10
|
||||||
|
|
||||||
|
|
||||||
488:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** __weak void HAL_ADC_MspDeInit(ADC_HandleTypeDef* hadc)
|
488:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** __weak void HAL_ADC_MspDeInit(ADC_HandleTypeDef* hadc)
|
||||||
@ -598,7 +598,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
542:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** break;
|
542:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** break;
|
||||||
543:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
543:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
544:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** case HAL_ADC_ERROR_CB_ID :
|
544:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** case HAL_ADC_ERROR_CB_ID :
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 11
|
ARM GAS /tmp/cc4Rricp.s page 11
|
||||||
|
|
||||||
|
|
||||||
545:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** hadc->ErrorCallback = pCallback;
|
545:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** hadc->ErrorCallback = pCallback;
|
||||||
@ -658,7 +658,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
599:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** return status;
|
599:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** return status;
|
||||||
600:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
600:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
||||||
601:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
601:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 12
|
ARM GAS /tmp/cc4Rricp.s page 12
|
||||||
|
|
||||||
|
|
||||||
602:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /**
|
602:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /**
|
||||||
@ -718,7 +718,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
656:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Update the error code */
|
656:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Update the error code */
|
||||||
657:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** hadc->ErrorCode |= HAL_ADC_ERROR_INVALID_CALLBACK;
|
657:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** hadc->ErrorCode |= HAL_ADC_ERROR_INVALID_CALLBACK;
|
||||||
658:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
658:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 13
|
ARM GAS /tmp/cc4Rricp.s page 13
|
||||||
|
|
||||||
|
|
||||||
659:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Return error status */
|
659:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Return error status */
|
||||||
@ -778,7 +778,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
713:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (+) Stop conversion of regular channel.
|
713:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (+) Stop conversion of regular channel.
|
||||||
714:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (+) Start conversion of regular channel and enable interrupt.
|
714:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (+) Start conversion of regular channel and enable interrupt.
|
||||||
715:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (+) Stop conversion of regular channel and disable interrupt.
|
715:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (+) Stop conversion of regular channel and disable interrupt.
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 14
|
ARM GAS /tmp/cc4Rricp.s page 14
|
||||||
|
|
||||||
|
|
||||||
716:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (+) Start conversion of regular channel and enable DMA transfer.
|
716:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (+) Start conversion of regular channel and enable DMA transfer.
|
||||||
@ -838,7 +838,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
770:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** if (READ_BIT(hadc->Instance->CR1, ADC_CR1_JAUTO) != RESET)
|
770:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** if (READ_BIT(hadc->Instance->CR1, ADC_CR1_JAUTO) != RESET)
|
||||||
771:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
771:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
772:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** ADC_STATE_CLR_SET(hadc->State, HAL_ADC_STATE_INJ_EOC, HAL_ADC_STATE_INJ_BUSY);
|
772:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** ADC_STATE_CLR_SET(hadc->State, HAL_ADC_STATE_INJ_EOC, HAL_ADC_STATE_INJ_BUSY);
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 15
|
ARM GAS /tmp/cc4Rricp.s page 15
|
||||||
|
|
||||||
|
|
||||||
773:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
773:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
||||||
@ -898,7 +898,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
827:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
827:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
||||||
828:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** else
|
828:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** else
|
||||||
829:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
829:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 16
|
ARM GAS /tmp/cc4Rricp.s page 16
|
||||||
|
|
||||||
|
|
||||||
830:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Update ADC state machine to error */
|
830:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Update ADC state machine to error */
|
||||||
@ -958,7 +958,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
884:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * in DMA mode and polling for end of each conversion (ADC init
|
884:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * in DMA mode and polling for end of each conversion (ADC init
|
||||||
885:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * parameter "EOCSelection" set to ADC_EOC_SINGLE_CONV).
|
885:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * parameter "EOCSelection" set to ADC_EOC_SINGLE_CONV).
|
||||||
886:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * In this case, DMA resets the flag EOC and polling cannot be
|
886:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * In this case, DMA resets the flag EOC and polling cannot be
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 17
|
ARM GAS /tmp/cc4Rricp.s page 17
|
||||||
|
|
||||||
|
|
||||||
887:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * performed on each conversion. Nevertheless, polling can still
|
887:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * performed on each conversion. Nevertheless, polling can still
|
||||||
@ -1018,7 +1018,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
941:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
941:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
942:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Clear regular group conversion flag */
|
942:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Clear regular group conversion flag */
|
||||||
943:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** __HAL_ADC_CLEAR_FLAG(hadc, ADC_FLAG_STRT | ADC_FLAG_EOC);
|
943:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** __HAL_ADC_CLEAR_FLAG(hadc, ADC_FLAG_STRT | ADC_FLAG_EOC);
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 18
|
ARM GAS /tmp/cc4Rricp.s page 18
|
||||||
|
|
||||||
|
|
||||||
944:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
944:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
@ -1078,7 +1078,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
998:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** if(Timeout != HAL_MAX_DELAY)
|
998:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** if(Timeout != HAL_MAX_DELAY)
|
||||||
999:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
999:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
1000:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** if((Timeout == 0) || ((HAL_GetTick() - tickstart ) > Timeout))
|
1000:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** if((Timeout == 0) || ((HAL_GetTick() - tickstart ) > Timeout))
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 19
|
ARM GAS /tmp/cc4Rricp.s page 19
|
||||||
|
|
||||||
|
|
||||||
1001:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
1001:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
@ -1138,7 +1138,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1055:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** assert_param(IS_ADC_EXT_TRIG_EDGE(hadc->Init.ExternalTrigConvEdge));
|
1055:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** assert_param(IS_ADC_EXT_TRIG_EDGE(hadc->Init.ExternalTrigConvEdge));
|
||||||
1056:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
1056:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
1057:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Process locked */
|
1057:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Process locked */
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 20
|
ARM GAS /tmp/cc4Rricp.s page 20
|
||||||
|
|
||||||
|
|
||||||
1058:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** __HAL_LOCK(hadc);
|
1058:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** __HAL_LOCK(hadc);
|
||||||
@ -1198,7 +1198,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1112:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* (To ensure of no unknown state from potential previous ADC operations) */
|
1112:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* (To ensure of no unknown state from potential previous ADC operations) */
|
||||||
1113:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** __HAL_ADC_CLEAR_FLAG(hadc, ADC_FLAG_EOC | ADC_FLAG_OVR);
|
1113:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** __HAL_ADC_CLEAR_FLAG(hadc, ADC_FLAG_EOC | ADC_FLAG_OVR);
|
||||||
1114:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
1114:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 21
|
ARM GAS /tmp/cc4Rricp.s page 21
|
||||||
|
|
||||||
|
|
||||||
1115:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Enable end of conversion interrupt for regular group */
|
1115:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Enable end of conversion interrupt for regular group */
|
||||||
@ -1258,7 +1258,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1169:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * the configuration information for the specified ADC.
|
1169:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * the configuration information for the specified ADC.
|
||||||
1170:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * @retval HAL status.
|
1170:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * @retval HAL status.
|
||||||
1171:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** */
|
1171:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** */
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 22
|
ARM GAS /tmp/cc4Rricp.s page 22
|
||||||
|
|
||||||
|
|
||||||
1172:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** HAL_StatusTypeDef HAL_ADC_Stop_IT(ADC_HandleTypeDef* hadc)
|
1172:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** HAL_StatusTypeDef HAL_ADC_Stop_IT(ADC_HandleTypeDef* hadc)
|
||||||
@ -1318,7 +1318,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1226:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
1226:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
1227:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Update state machine on conversion status if not in error state */
|
1227:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Update state machine on conversion status if not in error state */
|
||||||
1228:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** if (HAL_IS_BIT_CLR(hadc->State, HAL_ADC_STATE_ERROR_INTERNAL))
|
1228:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** if (HAL_IS_BIT_CLR(hadc->State, HAL_ADC_STATE_ERROR_INTERNAL))
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 23
|
ARM GAS /tmp/cc4Rricp.s page 23
|
||||||
|
|
||||||
|
|
||||||
1229:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
1229:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
@ -1378,7 +1378,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1283:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Determine whether any further conversion upcoming on group injected */
|
1283:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Determine whether any further conversion upcoming on group injected */
|
||||||
1284:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* by external trigger, scan sequence on going or by automatic injected */
|
1284:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* by external trigger, scan sequence on going or by automatic injected */
|
||||||
1285:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* conversion from group regular (same conditions as group regular */
|
1285:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* conversion from group regular (same conditions as group regular */
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 24
|
ARM GAS /tmp/cc4Rricp.s page 24
|
||||||
|
|
||||||
|
|
||||||
1286:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* interruption disabling above). */
|
1286:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* interruption disabling above). */
|
||||||
@ -1438,7 +1438,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1340:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** tmp1 = tmp_sr & ADC_FLAG_OVR;
|
1340:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** tmp1 = tmp_sr & ADC_FLAG_OVR;
|
||||||
1341:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** tmp2 = tmp_cr1 & ADC_IT_OVR;
|
1341:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** tmp2 = tmp_cr1 & ADC_IT_OVR;
|
||||||
1342:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Check Overrun flag */
|
1342:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Check Overrun flag */
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 25
|
ARM GAS /tmp/cc4Rricp.s page 25
|
||||||
|
|
||||||
|
|
||||||
1343:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** if(tmp1 && tmp2)
|
1343:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** if(tmp1 && tmp2)
|
||||||
@ -1498,7 +1498,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1397:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** while(counter != 0)
|
1397:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** while(counter != 0)
|
||||||
1398:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
1398:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
1399:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** counter--;
|
1399:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** counter--;
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 26
|
ARM GAS /tmp/cc4Rricp.s page 26
|
||||||
|
|
||||||
|
|
||||||
1400:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
1400:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
||||||
@ -1558,7 +1558,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1454:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Enable ADC overrun interrupt */
|
1454:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Enable ADC overrun interrupt */
|
||||||
1455:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** __HAL_ADC_ENABLE_IT(hadc, ADC_IT_OVR);
|
1455:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** __HAL_ADC_ENABLE_IT(hadc, ADC_IT_OVR);
|
||||||
1456:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
1456:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 27
|
ARM GAS /tmp/cc4Rricp.s page 27
|
||||||
|
|
||||||
|
|
||||||
1457:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Enable ADC DMA mode */
|
1457:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Enable ADC DMA mode */
|
||||||
@ -1618,7 +1618,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1511:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * @retval HAL status
|
1511:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * @retval HAL status
|
||||||
1512:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** */
|
1512:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** */
|
||||||
1513:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** HAL_StatusTypeDef HAL_ADC_Stop_DMA(ADC_HandleTypeDef* hadc)
|
1513:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** HAL_StatusTypeDef HAL_ADC_Stop_DMA(ADC_HandleTypeDef* hadc)
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 28
|
ARM GAS /tmp/cc4Rricp.s page 28
|
||||||
|
|
||||||
|
|
||||||
1514:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
1514:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
@ -1678,7 +1678,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1568:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** */
|
1568:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** */
|
||||||
1569:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** uint32_t HAL_ADC_GetValue(ADC_HandleTypeDef* hadc)
|
1569:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** uint32_t HAL_ADC_GetValue(ADC_HandleTypeDef* hadc)
|
||||||
1570:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
1570:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 29
|
ARM GAS /tmp/cc4Rricp.s page 29
|
||||||
|
|
||||||
|
|
||||||
1571:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Return the selected ADC converted value */
|
1571:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Return the selected ADC converted value */
|
||||||
@ -1738,7 +1738,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1625:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * - If needed, restart a new ADC conversion using function
|
1625:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * - If needed, restart a new ADC conversion using function
|
||||||
1626:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * "HAL_ADC_Start_DMA()"
|
1626:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * "HAL_ADC_Start_DMA()"
|
||||||
1627:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * (this function is also clearing overrun flag)
|
1627:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * (this function is also clearing overrun flag)
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 30
|
ARM GAS /tmp/cc4Rricp.s page 30
|
||||||
|
|
||||||
|
|
||||||
1628:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * @param hadc pointer to a ADC_HandleTypeDef structure that contains
|
1628:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * @param hadc pointer to a ADC_HandleTypeDef structure that contains
|
||||||
@ -1798,7 +1798,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1682:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* if ADC_Channel_10 ... ADC_Channel_18 is selected */
|
1682:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* if ADC_Channel_10 ... ADC_Channel_18 is selected */
|
||||||
1683:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** if ((sConfig->Channel > ADC_CHANNEL_9) && (sConfig->Channel != ADC_INTERNAL_NONE))
|
1683:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** if ((sConfig->Channel > ADC_CHANNEL_9) && (sConfig->Channel != ADC_INTERNAL_NONE))
|
||||||
1684:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
1684:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 31
|
ARM GAS /tmp/cc4Rricp.s page 31
|
||||||
|
|
||||||
|
|
||||||
1685:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Clear the old sample time */
|
1685:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Clear the old sample time */
|
||||||
@ -1858,7 +1858,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1739:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Disable the VBAT & TSVREFE channel*/
|
1739:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Disable the VBAT & TSVREFE channel*/
|
||||||
1740:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** ADC->CCR &= ~(ADC_CCR_VBATE | ADC_CCR_TSVREFE);
|
1740:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** ADC->CCR &= ~(ADC_CCR_VBATE | ADC_CCR_TSVREFE);
|
||||||
1741:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
1741:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 32
|
ARM GAS /tmp/cc4Rricp.s page 32
|
||||||
|
|
||||||
|
|
||||||
1742:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
1742:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
@ -1918,7 +1918,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1796:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** */
|
1796:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** */
|
||||||
1797:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** HAL_StatusTypeDef HAL_ADC_AnalogWDGConfig(ADC_HandleTypeDef* hadc, ADC_AnalogWDGConfTypeDef* Analog
|
1797:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** HAL_StatusTypeDef HAL_ADC_AnalogWDGConfig(ADC_HandleTypeDef* hadc, ADC_AnalogWDGConfTypeDef* Analog
|
||||||
1798:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
1798:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 33
|
ARM GAS /tmp/cc4Rricp.s page 33
|
||||||
|
|
||||||
|
|
||||||
1799:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** #ifdef USE_FULL_ASSERT
|
1799:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** #ifdef USE_FULL_ASSERT
|
||||||
@ -1978,7 +1978,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1853:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /**
|
1853:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /**
|
||||||
1854:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * @}
|
1854:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * @}
|
||||||
1855:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** */
|
1855:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** */
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 34
|
ARM GAS /tmp/cc4Rricp.s page 34
|
||||||
|
|
||||||
|
|
||||||
1856:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
1856:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
@ -2038,7 +2038,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1910:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /**
|
1910:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /**
|
||||||
1911:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * @brief Initializes the ADCx peripheral according to the specified parameters
|
1911:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * @brief Initializes the ADCx peripheral according to the specified parameters
|
||||||
1912:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * in the ADC_InitStruct without initializing the ADC MSP.
|
1912:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * in the ADC_InitStruct without initializing the ADC MSP.
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 35
|
ARM GAS /tmp/cc4Rricp.s page 35
|
||||||
|
|
||||||
|
|
||||||
1913:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * @param hadc pointer to a ADC_HandleTypeDef structure that contains
|
1913:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** * @param hadc pointer to a ADC_HandleTypeDef structure that contains
|
||||||
@ -2098,7 +2098,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
65 .loc 1 1929 7 is_stmt 0 view .LVU16
|
65 .loc 1 1929 7 is_stmt 0 view .LVU16
|
||||||
66 0028 0268 ldr r2, [r0]
|
66 0028 0268 ldr r2, [r0]
|
||||||
67 .loc 1 1929 23 view .LVU17
|
67 .loc 1 1929 23 view .LVU17
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 36
|
ARM GAS /tmp/cc4Rricp.s page 36
|
||||||
|
|
||||||
|
|
||||||
68 002a 5368 ldr r3, [r2, #4]
|
68 002a 5368 ldr r3, [r2, #4]
|
||||||
@ -2158,7 +2158,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
107 0058 0268 ldr r2, [r0]
|
107 0058 0268 ldr r2, [r0]
|
||||||
108 .loc 1 1944 25 view .LVU36
|
108 .loc 1 1944 25 view .LVU36
|
||||||
109 005a 9368 ldr r3, [r2, #8]
|
109 005a 9368 ldr r3, [r2, #8]
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 37
|
ARM GAS /tmp/cc4Rricp.s page 37
|
||||||
|
|
||||||
|
|
||||||
110 005c 23F07063 bic r3, r3, #251658240
|
110 005c 23F07063 bic r3, r3, #251658240
|
||||||
@ -2218,7 +2218,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
148 .loc 1 1960 7 is_stmt 0 view .LVU54
|
148 .loc 1 1960 7 is_stmt 0 view .LVU54
|
||||||
149 008a 0268 ldr r2, [r0]
|
149 008a 0268 ldr r2, [r0]
|
||||||
150 .loc 1 1960 23 view .LVU55
|
150 .loc 1 1960 23 view .LVU55
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 38
|
ARM GAS /tmp/cc4Rricp.s page 38
|
||||||
|
|
||||||
|
|
||||||
151 008c 9368 ldr r3, [r2, #8]
|
151 008c 9368 ldr r3, [r2, #8]
|
||||||
@ -2278,7 +2278,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1976:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** hadc->Instance->CR1 &= ~(ADC_CR1_DISCEN);
|
1976:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** hadc->Instance->CR1 &= ~(ADC_CR1_DISCEN);
|
||||||
1977:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
1977:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
||||||
1978:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
1978:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 39
|
ARM GAS /tmp/cc4Rricp.s page 39
|
||||||
|
|
||||||
|
|
||||||
1979:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Set ADC number of conversion */
|
1979:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Set ADC number of conversion */
|
||||||
@ -2338,7 +2338,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
233 .loc 1 1989 7 is_stmt 0 view .LVU93
|
233 .loc 1 1989 7 is_stmt 0 view .LVU93
|
||||||
234 00fa 0268 ldr r2, [r0]
|
234 00fa 0268 ldr r2, [r0]
|
||||||
235 .loc 1 1989 23 view .LVU94
|
235 .loc 1 1989 23 view .LVU94
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 40
|
ARM GAS /tmp/cc4Rricp.s page 40
|
||||||
|
|
||||||
|
|
||||||
236 00fc 9368 ldr r3, [r2, #8]
|
236 00fc 9368 ldr r3, [r2, #8]
|
||||||
@ -2398,7 +2398,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
281 .thumb
|
281 .thumb
|
||||||
282 .thumb_func
|
282 .thumb_func
|
||||||
283 .fpu fpv5-d16
|
283 .fpu fpv5-d16
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 41
|
ARM GAS /tmp/cc4Rricp.s page 41
|
||||||
|
|
||||||
|
|
||||||
285 HAL_ADC_MspInit:
|
285 HAL_ADC_MspInit:
|
||||||
@ -2458,7 +2458,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
337:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** assert_param(IS_ADC_EXT_TRIG(hadc->Init.ExternalTrigConv));
|
337:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** assert_param(IS_ADC_EXT_TRIG(hadc->Init.ExternalTrigConv));
|
||||||
329 .loc 1 337 3 view .LVU119
|
329 .loc 1 337 3 view .LVU119
|
||||||
338:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** assert_param(IS_ADC_DATA_ALIGN(hadc->Init.DataAlign));
|
338:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** assert_param(IS_ADC_DATA_ALIGN(hadc->Init.DataAlign));
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 42
|
ARM GAS /tmp/cc4Rricp.s page 42
|
||||||
|
|
||||||
|
|
||||||
330 .loc 1 338 3 view .LVU120
|
330 .loc 1 338 3 view .LVU120
|
||||||
@ -2518,7 +2518,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
368:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** #endif /* USE_HAL_ADC_REGISTER_CALLBACKS */
|
368:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** #endif /* USE_HAL_ADC_REGISTER_CALLBACKS */
|
||||||
365 .loc 1 368 5 is_stmt 1 view .LVU140
|
365 .loc 1 368 5 is_stmt 1 view .LVU140
|
||||||
366 001c FFF7FEFF bl HAL_ADC_MspInit
|
366 001c FFF7FEFF bl HAL_ADC_MspInit
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 43
|
ARM GAS /tmp/cc4Rricp.s page 43
|
||||||
|
|
||||||
|
|
||||||
367 .LVL6:
|
367 .LVL6:
|
||||||
@ -2578,7 +2578,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
413 .section .text.HAL_ADC_MspDeInit,"ax",%progbits
|
413 .section .text.HAL_ADC_MspDeInit,"ax",%progbits
|
||||||
414 .align 1
|
414 .align 1
|
||||||
415 .weak HAL_ADC_MspDeInit
|
415 .weak HAL_ADC_MspDeInit
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 44
|
ARM GAS /tmp/cc4Rricp.s page 44
|
||||||
|
|
||||||
|
|
||||||
416 .syntax unified
|
416 .syntax unified
|
||||||
@ -2638,7 +2638,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
463 0006 036C ldr r3, [r0, #64]
|
463 0006 036C ldr r3, [r0, #64]
|
||||||
464 0008 43F00203 orr r3, r3, #2
|
464 0008 43F00203 orr r3, r3, #2
|
||||||
465 000c 0364 str r3, [r0, #64]
|
465 000c 0364 str r3, [r0, #64]
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 45
|
ARM GAS /tmp/cc4Rricp.s page 45
|
||||||
|
|
||||||
|
|
||||||
434:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
434:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
@ -2698,7 +2698,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
506 .loc 1 423 12 view .LVU173
|
506 .loc 1 423 12 view .LVU173
|
||||||
507 0036 0120 movs r0, #1
|
507 0036 0120 movs r0, #1
|
||||||
508 .LVL16:
|
508 .LVL16:
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 46
|
ARM GAS /tmp/cc4Rricp.s page 46
|
||||||
|
|
||||||
|
|
||||||
465:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
465:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
@ -2758,7 +2758,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
744:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
744:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
552 .loc 1 744 21 discriminator 2 view .LVU187
|
552 .loc 1 744 21 discriminator 2 view .LVU187
|
||||||
553 0016 9A68 ldr r2, [r3, #8]
|
553 0016 9A68 ldr r2, [r3, #8]
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 47
|
ARM GAS /tmp/cc4Rricp.s page 47
|
||||||
|
|
||||||
|
|
||||||
744:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
744:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
@ -2818,7 +2818,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
759:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
759:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
593 .loc 1 759 5 view .LVU203
|
593 .loc 1 759 5 view .LVU203
|
||||||
594 004a 12F0010F tst r2, #1
|
594 004a 12F0010F tst r2, #1
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 48
|
ARM GAS /tmp/cc4Rricp.s page 48
|
||||||
|
|
||||||
|
|
||||||
595 004e 52D0 beq .L38
|
595 004e 52D0 beq .L38
|
||||||
@ -2878,7 +2878,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
634 .loc 1 797 8 is_stmt 0 view .LVU218
|
634 .loc 1 797 8 is_stmt 0 view .LVU218
|
||||||
635 008c 264B ldr r3, .L52+12
|
635 008c 264B ldr r3, .L52+12
|
||||||
636 008e 5B68 ldr r3, [r3, #4]
|
636 008e 5B68 ldr r3, [r3, #4]
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 49
|
ARM GAS /tmp/cc4Rricp.s page 49
|
||||||
|
|
||||||
|
|
||||||
797:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
797:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
@ -2938,7 +2938,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
676 00bc 5B68 ldr r3, [r3, #4]
|
676 00bc 5B68 ldr r3, [r3, #4]
|
||||||
817:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
817:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
677 .loc 1 817 9 view .LVU234
|
677 .loc 1 817 9 view .LVU234
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 50
|
ARM GAS /tmp/cc4Rricp.s page 50
|
||||||
|
|
||||||
|
|
||||||
678 00be 13F0100F tst r3, #16
|
678 00be 13F0100F tst r3, #16
|
||||||
@ -2998,7 +2998,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
718 .LVL22:
|
718 .LVL22:
|
||||||
838:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
838:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
||||||
719 .loc 1 838 10 view .LVU249
|
719 .loc 1 838 10 view .LVU249
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 51
|
ARM GAS /tmp/cc4Rricp.s page 51
|
||||||
|
|
||||||
|
|
||||||
720 00f4 08E0 b .L34
|
720 00f4 08E0 b .L34
|
||||||
@ -3058,7 +3058,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
764 0116 F7E7 b .L34
|
764 0116 F7E7 b .L34
|
||||||
765 .LVL31:
|
765 .LVL31:
|
||||||
766 .L48:
|
766 .L48:
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 52
|
ARM GAS /tmp/cc4Rricp.s page 52
|
||||||
|
|
||||||
|
|
||||||
838:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
838:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
||||||
@ -3118,7 +3118,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
814 0016 9360 str r3, [r2, #8]
|
814 0016 9360 str r3, [r2, #8]
|
||||||
864:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
864:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
815 .loc 1 864 3 discriminator 2 view .LVU269
|
815 .loc 1 864 3 discriminator 2 view .LVU269
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 53
|
ARM GAS /tmp/cc4Rricp.s page 53
|
||||||
|
|
||||||
|
|
||||||
864:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
864:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
@ -3178,7 +3178,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
860 .fpu fpv5-d16
|
860 .fpu fpv5-d16
|
||||||
862 HAL_ADC_PollForConversion:
|
862 HAL_ADC_PollForConversion:
|
||||||
863 .LVL37:
|
863 .LVL37:
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 54
|
ARM GAS /tmp/cc4Rricp.s page 54
|
||||||
|
|
||||||
|
|
||||||
864 .LFB147:
|
864 .LFB147:
|
||||||
@ -3238,7 +3238,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
904 .loc 1 920 11 is_stmt 0 view .LVU294
|
904 .loc 1 920 11 is_stmt 0 view .LVU294
|
||||||
905 001e 2368 ldr r3, [r4]
|
905 001e 2368 ldr r3, [r4]
|
||||||
906 0020 1A68 ldr r2, [r3]
|
906 0020 1A68 ldr r2, [r3]
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 55
|
ARM GAS /tmp/cc4Rricp.s page 55
|
||||||
|
|
||||||
|
|
||||||
920:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
920:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
@ -3298,7 +3298,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
911:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
911:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
945 .loc 1 911 5 view .LVU311
|
945 .loc 1 911 5 view .LVU311
|
||||||
946 0054 0023 movs r3, #0
|
946 0054 0023 movs r3, #0
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 56
|
ARM GAS /tmp/cc4Rricp.s page 56
|
||||||
|
|
||||||
|
|
||||||
947 0056 80F83C30 strb r3, [r0, #60]
|
947 0056 80F83C30 strb r3, [r0, #60]
|
||||||
@ -3358,7 +3358,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
986 0086 DA6A ldr r2, [r3, #44]
|
986 0086 DA6A ldr r2, [r3, #44]
|
||||||
955:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (HAL_IS_BIT_CLR(hadc->Instance->SQR1, ADC_SQR1_L) ||
|
955:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (HAL_IS_BIT_CLR(hadc->Instance->SQR1, ADC_SQR1_L) ||
|
||||||
987 .loc 1 955 60 view .LVU327
|
987 .loc 1 955 60 view .LVU327
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 57
|
ARM GAS /tmp/cc4Rricp.s page 57
|
||||||
|
|
||||||
|
|
||||||
988 0088 12F4700F tst r2, #15728640
|
988 0088 12F4700F tst r2, #15728640
|
||||||
@ -3418,7 +3418,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1030 00be 0020 movs r0, #0
|
1030 00be 0020 movs r0, #0
|
||||||
1031 00c0 F8E7 b .L62
|
1031 00c0 F8E7 b .L62
|
||||||
1032 .cfi_endproc
|
1032 .cfi_endproc
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 58
|
ARM GAS /tmp/cc4Rricp.s page 58
|
||||||
|
|
||||||
|
|
||||||
1033 .LFE147:
|
1033 .LFE147:
|
||||||
@ -3478,7 +3478,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1078 0010 2B68 ldr r3, [r5]
|
1078 0010 2B68 ldr r3, [r5]
|
||||||
1079 0012 1C68 ldr r4, [r3]
|
1079 0012 1C68 ldr r4, [r3]
|
||||||
995:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
995:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 59
|
ARM GAS /tmp/cc4Rricp.s page 59
|
||||||
|
|
||||||
|
|
||||||
1080 .loc 1 995 8 view .LVU351
|
1080 .loc 1 995 8 view .LVU351
|
||||||
@ -3538,7 +3538,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1118 0046 B842 cmp r0, r7
|
1118 0046 B842 cmp r0, r7
|
||||||
1119 0048 E2D9 bls .L79
|
1119 0048 E2D9 bls .L79
|
||||||
1120 004a EAE7 b .L80
|
1120 004a EAE7 b .L80
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 60
|
ARM GAS /tmp/cc4Rricp.s page 60
|
||||||
|
|
||||||
|
|
||||||
1121 .L86:
|
1121 .L86:
|
||||||
@ -3598,7 +3598,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1167 .LFB149:
|
1167 .LFB149:
|
||||||
1050:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** __IO uint32_t counter = 0;
|
1050:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** __IO uint32_t counter = 0;
|
||||||
1168 .loc 1 1050 1 is_stmt 1 view -0
|
1168 .loc 1 1050 1 is_stmt 1 view -0
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 61
|
ARM GAS /tmp/cc4Rricp.s page 61
|
||||||
|
|
||||||
|
|
||||||
1169 .cfi_startproc
|
1169 .cfi_startproc
|
||||||
@ -3658,7 +3658,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1207 002a 1B68 ldr r3, [r3]
|
1207 002a 1B68 ldr r3, [r3]
|
||||||
1208 002c 3F4A ldr r2, .L108+4
|
1208 002c 3F4A ldr r2, .L108+4
|
||||||
1209 002e A2FB0323 umull r2, r3, r2, r3
|
1209 002e A2FB0323 umull r2, r3, r2, r3
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 62
|
ARM GAS /tmp/cc4Rricp.s page 62
|
||||||
|
|
||||||
|
|
||||||
1210 0032 9B0C lsrs r3, r3, #18
|
1210 0032 9B0C lsrs r3, r3, #18
|
||||||
@ -3718,7 +3718,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1248 .loc 1 1089 8 view .LVU410
|
1248 .loc 1 1089 8 view .LVU410
|
||||||
1249 0060 12F4806F tst r2, #1024
|
1249 0060 12F4806F tst r2, #1024
|
||||||
1250 0064 05D0 beq .L95
|
1250 0064 05D0 beq .L95
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 63
|
ARM GAS /tmp/cc4Rricp.s page 63
|
||||||
|
|
||||||
|
|
||||||
1091:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
1091:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
||||||
@ -3778,7 +3778,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1290 .loc 1 1122 15 is_stmt 0 view .LVU425
|
1290 .loc 1 1122 15 is_stmt 0 view .LVU425
|
||||||
1291 00a2 0368 ldr r3, [r0]
|
1291 00a2 0368 ldr r3, [r0]
|
||||||
1122:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
1122:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 64
|
ARM GAS /tmp/cc4Rricp.s page 64
|
||||||
|
|
||||||
|
|
||||||
1292 .loc 1 1122 25 view .LVU426
|
1292 .loc 1 1122 25 view .LVU426
|
||||||
@ -3838,7 +3838,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1142:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
1142:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
1332 .loc 1 1142 11 view .LVU441
|
1332 .loc 1 1142 11 view .LVU441
|
||||||
1333 00d2 1B4A ldr r2, .L108+24
|
1333 00d2 1B4A ldr r2, .L108+24
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 65
|
ARM GAS /tmp/cc4Rricp.s page 65
|
||||||
|
|
||||||
|
|
||||||
1334 00d4 9342 cmp r3, r2
|
1334 00d4 9342 cmp r3, r2
|
||||||
@ -3898,7 +3898,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1375 0108 0364 str r3, [r0, #64]
|
1375 0108 0364 str r3, [r0, #64]
|
||||||
1156:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
1156:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
||||||
1376 .loc 1 1156 5 view .LVU455
|
1376 .loc 1 1156 5 view .LVU455
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 66
|
ARM GAS /tmp/cc4Rricp.s page 66
|
||||||
|
|
||||||
|
|
||||||
1377 010a 436C ldr r3, [r0, #68]
|
1377 010a 436C ldr r3, [r0, #68]
|
||||||
@ -3958,7 +3958,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1421 .L109:
|
1421 .L109:
|
||||||
1422 .align 2
|
1422 .align 2
|
||||||
1423 .L108:
|
1423 .L108:
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 67
|
ARM GAS /tmp/cc4Rricp.s page 67
|
||||||
|
|
||||||
|
|
||||||
1424 0128 00000000 .word SystemCoreClock
|
1424 0128 00000000 .word SystemCoreClock
|
||||||
@ -4018,7 +4018,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1470 001c 12F0010F tst r2, #1
|
1470 001c 12F0010F tst r2, #1
|
||||||
1471 0020 09D1 bne .L112
|
1471 0020 09D1 bne .L112
|
||||||
1188:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
1188:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 68
|
ARM GAS /tmp/cc4Rricp.s page 68
|
||||||
|
|
||||||
|
|
||||||
1472 .loc 1 1188 5 is_stmt 1 view .LVU476
|
1472 .loc 1 1188 5 is_stmt 1 view .LVU476
|
||||||
@ -4078,7 +4078,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1519 .LVL73:
|
1519 .LVL73:
|
||||||
1520 .LFB152:
|
1520 .LFB152:
|
||||||
1376:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** __IO uint32_t counter = 0;
|
1376:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** __IO uint32_t counter = 0;
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 69
|
ARM GAS /tmp/cc4Rricp.s page 69
|
||||||
|
|
||||||
|
|
||||||
1521 .loc 1 1376 1 is_stmt 1 view -0
|
1521 .loc 1 1376 1 is_stmt 1 view -0
|
||||||
@ -4138,7 +4138,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1561 0020 10F0010F tst r0, #1
|
1561 0020 10F0010F tst r0, #1
|
||||||
1562 0024 13D1 bne .L118
|
1562 0024 13D1 bne .L118
|
||||||
1392:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
1392:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 70
|
ARM GAS /tmp/cc4Rricp.s page 70
|
||||||
|
|
||||||
|
|
||||||
1563 .loc 1 1392 5 is_stmt 1 view .LVU501
|
1563 .loc 1 1392 5 is_stmt 1 view .LVU501
|
||||||
@ -4198,7 +4198,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1602 .loc 1 1409 5 is_stmt 1 view .LVU516
|
1602 .loc 1 1409 5 is_stmt 1 view .LVU516
|
||||||
1603 0058 256C ldr r5, [r4, #64]
|
1603 0058 256C ldr r5, [r4, #64]
|
||||||
1604 005a 424A ldr r2, .L135+8
|
1604 005a 424A ldr r2, .L135+8
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 71
|
ARM GAS /tmp/cc4Rricp.s page 71
|
||||||
|
|
||||||
|
|
||||||
1605 005c 2A40 ands r2, r2, r5
|
1605 005c 2A40 ands r2, r2, r5
|
||||||
@ -4258,7 +4258,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1643 .loc 1 1441 9 is_stmt 0 view .LVU532
|
1643 .loc 1 1441 9 is_stmt 0 view .LVU532
|
||||||
1644 0094 A26B ldr r2, [r4, #56]
|
1644 0094 A26B ldr r2, [r4, #56]
|
||||||
1441:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
1441:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 72
|
ARM GAS /tmp/cc4Rricp.s page 72
|
||||||
|
|
||||||
|
|
||||||
1645 .loc 1 1441 44 view .LVU533
|
1645 .loc 1 1441 44 view .LVU533
|
||||||
@ -4318,7 +4318,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1464:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
1464:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
1685 .loc 1 1464 7 view .LVU548
|
1685 .loc 1 1464 7 view .LVU548
|
||||||
1686 00ce 13F01F0F tst r3, #31
|
1686 00ce 13F01F0F tst r3, #31
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 73
|
ARM GAS /tmp/cc4Rricp.s page 73
|
||||||
|
|
||||||
|
|
||||||
1687 00d2 0DD1 bne .L125
|
1687 00d2 0DD1 bne .L125
|
||||||
@ -4378,7 +4378,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1486:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
1486:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
1727 .loc 1 1486 9 is_stmt 1 view .LVU563
|
1727 .loc 1 1486 9 is_stmt 1 view .LVU563
|
||||||
1486:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
1486:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 74
|
ARM GAS /tmp/cc4Rricp.s page 74
|
||||||
|
|
||||||
|
|
||||||
1728 .loc 1 1486 17 is_stmt 0 view .LVU564
|
1728 .loc 1 1486 17 is_stmt 0 view .LVU564
|
||||||
@ -4438,7 +4438,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1769 0136 43F01003 orr r3, r3, #16
|
1769 0136 43F01003 orr r3, r3, #16
|
||||||
1770 013a 2364 str r3, [r4, #64]
|
1770 013a 2364 str r3, [r4, #64]
|
||||||
1500:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
1500:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 75
|
ARM GAS /tmp/cc4Rricp.s page 75
|
||||||
|
|
||||||
|
|
||||||
1771 .loc 1 1500 5 is_stmt 1 view .LVU578
|
1771 .loc 1 1500 5 is_stmt 1 view .LVU578
|
||||||
@ -4498,7 +4498,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1818 0178 00200140 .word 1073815552
|
1818 0178 00200140 .word 1073815552
|
||||||
1819 017c 00220140 .word 1073816064
|
1819 017c 00220140 .word 1073816064
|
||||||
1820 .cfi_endproc
|
1820 .cfi_endproc
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 76
|
ARM GAS /tmp/cc4Rricp.s page 76
|
||||||
|
|
||||||
|
|
||||||
1821 .LFE152:
|
1821 .LFE152:
|
||||||
@ -4558,7 +4558,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1865 .loc 1 1528 5 discriminator 2 view .LVU597
|
1865 .loc 1 1528 5 discriminator 2 view .LVU597
|
||||||
1866 0020 12F0010F tst r2, #1
|
1866 0020 12F0010F tst r2, #1
|
||||||
1867 0024 1FD1 bne .L142
|
1867 0024 1FD1 bne .L142
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 77
|
ARM GAS /tmp/cc4Rricp.s page 77
|
||||||
|
|
||||||
|
|
||||||
1531:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
1531:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
@ -4618,7 +4618,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1543:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
1543:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
||||||
1909 .loc 1 1543 9 is_stmt 1 view .LVU611
|
1909 .loc 1 1543 9 is_stmt 1 view .LVU611
|
||||||
1910 005c 236C ldr r3, [r4, #64]
|
1910 005c 236C ldr r3, [r4, #64]
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 78
|
ARM GAS /tmp/cc4Rricp.s page 78
|
||||||
|
|
||||||
|
|
||||||
1911 005e 43F04003 orr r3, r3, #64
|
1911 005e 43F04003 orr r3, r3, #64
|
||||||
@ -4678,7 +4678,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1958 .cfi_startproc
|
1958 .cfi_startproc
|
||||||
1959 @ args = 0, pretend = 0, frame = 0
|
1959 @ args = 0, pretend = 0, frame = 0
|
||||||
1960 @ frame_needed = 0, uses_anonymous_args = 0
|
1960 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 79
|
ARM GAS /tmp/cc4Rricp.s page 79
|
||||||
|
|
||||||
|
|
||||||
1961 @ link register save eliminated.
|
1961 @ link register save eliminated.
|
||||||
@ -4738,7 +4738,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1599:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* NOTE : This function Should not be modified, when the callback is needed,
|
1599:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* NOTE : This function Should not be modified, when the callback is needed,
|
||||||
2011 .loc 1 1599 3 view .LVU629
|
2011 .loc 1 1599 3 view .LVU629
|
||||||
1603:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
1603:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 80
|
ARM GAS /tmp/cc4Rricp.s page 80
|
||||||
|
|
||||||
|
|
||||||
2012 .loc 1 1603 1 is_stmt 0 view .LVU630
|
2012 .loc 1 1603 1 is_stmt 0 view .LVU630
|
||||||
@ -4798,7 +4798,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
2032:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
2032:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
||||||
2033:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
2033:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
||||||
2034:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
2034:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 81
|
ARM GAS /tmp/cc4Rricp.s page 81
|
||||||
|
|
||||||
|
|
||||||
2035:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Conversion complete callback */
|
2035:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** /* Conversion complete callback */
|
||||||
@ -4858,7 +4858,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
2041 .LVL101:
|
2041 .LVL101:
|
||||||
2042 .loc 1 2074 3 is_stmt 0 view .LVU635
|
2042 .loc 1 2074 3 is_stmt 0 view .LVU635
|
||||||
2043 0004 FFF7FEFF bl HAL_ADC_ConvHalfCpltCallback
|
2043 0004 FFF7FEFF bl HAL_ADC_ConvHalfCpltCallback
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 82
|
ARM GAS /tmp/cc4Rricp.s page 82
|
||||||
|
|
||||||
|
|
||||||
2044 .LVL102:
|
2044 .LVL102:
|
||||||
@ -4918,7 +4918,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
2095 .align 1
|
2095 .align 1
|
||||||
2096 .global HAL_ADC_IRQHandler
|
2096 .global HAL_ADC_IRQHandler
|
||||||
2097 .syntax unified
|
2097 .syntax unified
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 83
|
ARM GAS /tmp/cc4Rricp.s page 83
|
||||||
|
|
||||||
|
|
||||||
2098 .thumb
|
2098 .thumb
|
||||||
@ -4978,7 +4978,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1225:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
1225:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
2138 .loc 1 1225 5 view .LVU658
|
2138 .loc 1 1225 5 view .LVU658
|
||||||
2139 000e 12EA5602 ands r2, r2, r6, lsr #1
|
2139 000e 12EA5602 ands r2, r2, r6, lsr #1
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 84
|
ARM GAS /tmp/cc4Rricp.s page 84
|
||||||
|
|
||||||
|
|
||||||
2140 0012 2CD0 beq .L159
|
2140 0012 2CD0 beq .L159
|
||||||
@ -5038,7 +5038,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
2179 004a 23F48073 bic r3, r3, #256
|
2179 004a 23F48073 bic r3, r3, #256
|
||||||
2180 004e 2364 str r3, [r4, #64]
|
2180 004e 2364 str r3, [r4, #64]
|
||||||
1254:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
1254:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 85
|
ARM GAS /tmp/cc4Rricp.s page 85
|
||||||
|
|
||||||
|
|
||||||
2181 .loc 1 1254 7 view .LVU674
|
2181 .loc 1 1254 7 view .LVU674
|
||||||
@ -5098,7 +5098,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
2220 0082 43F40053 orr r3, r3, #8192
|
2220 0082 43F40053 orr r3, r3, #8192
|
||||||
2221 0086 2364 str r3, [r4, #64]
|
2221 0086 2364 str r3, [r4, #64]
|
||||||
2222 .L164:
|
2222 .L164:
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 86
|
ARM GAS /tmp/cc4Rricp.s page 86
|
||||||
|
|
||||||
|
|
||||||
1287:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (HAL_IS_BIT_CLR(hadc->Instance->JSQR, ADC_JSQR_JL) ||
|
1287:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (HAL_IS_BIT_CLR(hadc->Instance->JSQR, ADC_JSQR_JL) ||
|
||||||
@ -5158,7 +5158,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
2262 00c4 2364 str r3, [r4, #64]
|
2262 00c4 2364 str r3, [r4, #64]
|
||||||
1300:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
1300:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
2263 .loc 1 1300 7 view .LVU705
|
2263 .loc 1 1300 7 view .LVU705
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 87
|
ARM GAS /tmp/cc4Rricp.s page 87
|
||||||
|
|
||||||
|
|
||||||
1300:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
1300:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
@ -5218,7 +5218,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1343:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
1343:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
2303 .loc 1 1343 3 view .LVU721
|
2303 .loc 1 1343 3 view .LVU721
|
||||||
1343:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
1343:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 88
|
ARM GAS /tmp/cc4Rricp.s page 88
|
||||||
|
|
||||||
|
|
||||||
2304 .loc 1 1343 11 is_stmt 0 view .LVU722
|
2304 .loc 1 1343 11 is_stmt 0 view .LVU722
|
||||||
@ -5278,7 +5278,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
2348 .LFE151:
|
2348 .LFE151:
|
||||||
2350 .section .text.ADC_DMAError,"ax",%progbits
|
2350 .section .text.ADC_DMAError,"ax",%progbits
|
||||||
2351 .align 1
|
2351 .align 1
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 89
|
ARM GAS /tmp/cc4Rricp.s page 89
|
||||||
|
|
||||||
|
|
||||||
2352 .syntax unified
|
2352 .syntax unified
|
||||||
@ -5338,7 +5338,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
2387 0014 08BD pop {r3, pc}
|
2387 0014 08BD pop {r3, pc}
|
||||||
2388 .cfi_endproc
|
2388 .cfi_endproc
|
||||||
2389 .LFE166:
|
2389 .LFE166:
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 90
|
ARM GAS /tmp/cc4Rricp.s page 90
|
||||||
|
|
||||||
|
|
||||||
2391 .section .text.ADC_DMAConvCplt,"ax",%progbits
|
2391 .section .text.ADC_DMAConvCplt,"ax",%progbits
|
||||||
@ -5398,7 +5398,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
2434 001e 19D1 bne .L176
|
2434 001e 19D1 bne .L176
|
||||||
2016:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (HAL_IS_BIT_CLR(hadc->Instance->SQR1, ADC_SQR1_L) ||
|
2016:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** (HAL_IS_BIT_CLR(hadc->Instance->SQR1, ADC_SQR1_L) ||
|
||||||
2435 .loc 1 2016 19 discriminator 1 view .LVU755
|
2435 .loc 1 2016 19 discriminator 1 view .LVU755
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 91
|
ARM GAS /tmp/cc4Rricp.s page 91
|
||||||
|
|
||||||
|
|
||||||
2436 0020 8269 ldr r2, [r0, #24]
|
2436 0020 8269 ldr r2, [r0, #24]
|
||||||
@ -5458,7 +5458,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
2044:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
2044:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
2477 .loc 1 2044 5 is_stmt 1 view .LVU769
|
2477 .loc 1 2044 5 is_stmt 1 view .LVU769
|
||||||
2044:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
2044:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 92
|
ARM GAS /tmp/cc4Rricp.s page 92
|
||||||
|
|
||||||
|
|
||||||
2478 .loc 1 2044 14 is_stmt 0 view .LVU770
|
2478 .loc 1 2044 14 is_stmt 0 view .LVU770
|
||||||
@ -5518,7 +5518,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
2523 0000 30B4 push {r4, r5}
|
2523 0000 30B4 push {r4, r5}
|
||||||
2524 .LCFI22:
|
2524 .LCFI22:
|
||||||
2525 .cfi_def_cfa_offset 8
|
2525 .cfi_def_cfa_offset 8
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 93
|
ARM GAS /tmp/cc4Rricp.s page 93
|
||||||
|
|
||||||
|
|
||||||
2526 .cfi_offset 4, -8
|
2526 .cfi_offset 4, -8
|
||||||
@ -5578,7 +5578,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
2564 0030 4FF0070C mov ip, #7
|
2564 0030 4FF0070C mov ip, #7
|
||||||
2565 0034 0CFA03F3 lsl r3, ip, r3
|
2565 0034 0CFA03F3 lsl r3, ip, r3
|
||||||
1686:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
1686:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 94
|
ARM GAS /tmp/cc4Rricp.s page 94
|
||||||
|
|
||||||
|
|
||||||
2566 .loc 1 1686 27 view .LVU798
|
2566 .loc 1 1686 27 view .LVU798
|
||||||
@ -5638,7 +5638,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
2605 .loc 1 1702 9 is_stmt 0 view .LVU813
|
2605 .loc 1 1702 9 is_stmt 0 view .LVU813
|
||||||
2606 006c 0468 ldr r4, [r0]
|
2606 006c 0468 ldr r4, [r0]
|
||||||
1702:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
1702:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 95
|
ARM GAS /tmp/cc4Rricp.s page 95
|
||||||
|
|
||||||
|
|
||||||
2607 .loc 1 1702 27 view .LVU814
|
2607 .loc 1 1702 27 view .LVU814
|
||||||
@ -5698,7 +5698,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1712:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
1712:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
2647 .loc 1 1712 26 view .LVU829
|
2647 .loc 1 1712 26 view .LVU829
|
||||||
2648 00b0 22EA0303 bic r3, r2, r3
|
2648 00b0 22EA0303 bic r3, r2, r3
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 96
|
ARM GAS /tmp/cc4Rricp.s page 96
|
||||||
|
|
||||||
|
|
||||||
2649 00b4 6363 str r3, [r4, #52]
|
2649 00b4 6363 str r3, [r4, #52]
|
||||||
@ -5758,7 +5758,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1775:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
1775:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
2689 .loc 1 1775 3 is_stmt 1 view .LVU844
|
2689 .loc 1 1775 3 is_stmt 1 view .LVU844
|
||||||
1775:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
1775:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 97
|
ARM GAS /tmp/cc4Rricp.s page 97
|
||||||
|
|
||||||
|
|
||||||
2690 .loc 1 1775 3 view .LVU845
|
2690 .loc 1 1775 3 view .LVU845
|
||||||
@ -5818,7 +5818,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
2732 .loc 1 1724 5 is_stmt 1 view .LVU857
|
2732 .loc 1 1724 5 is_stmt 1 view .LVU857
|
||||||
1724:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
1724:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
||||||
2733 .loc 1 1724 9 is_stmt 0 view .LVU858
|
2733 .loc 1 1724 9 is_stmt 0 view .LVU858
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 98
|
ARM GAS /tmp/cc4Rricp.s page 98
|
||||||
|
|
||||||
|
|
||||||
2734 010e 0568 ldr r5, [r0]
|
2734 010e 0568 ldr r5, [r0]
|
||||||
@ -5878,7 +5878,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
2775 0152 BCE7 b .L188
|
2775 0152 BCE7 b .L188
|
||||||
2776 .L198:
|
2776 .L198:
|
||||||
1737:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
1737:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** {
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 99
|
ARM GAS /tmp/cc4Rricp.s page 99
|
||||||
|
|
||||||
|
|
||||||
2777 .loc 1 1737 43 discriminator 1 view .LVU872
|
2777 .loc 1 1737 43 discriminator 1 view .LVU872
|
||||||
@ -5938,7 +5938,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
2818 018e 124B ldr r3, .L201+8
|
2818 018e 124B ldr r3, .L201+8
|
||||||
2819 0190 5A68 ldr r2, [r3, #4]
|
2819 0190 5A68 ldr r2, [r3, #4]
|
||||||
2820 0192 22F48002 bic r2, r2, #4194304
|
2820 0192 22F48002 bic r2, r2, #4194304
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 100
|
ARM GAS /tmp/cc4Rricp.s page 100
|
||||||
|
|
||||||
|
|
||||||
2821 0196 5A60 str r2, [r3, #4]
|
2821 0196 5A60 str r2, [r3, #4]
|
||||||
@ -5998,7 +5998,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
2859 .loc 1 1767 12 view .LVU901
|
2859 .loc 1 1767 12 view .LVU901
|
||||||
2860 01c6 002B cmp r3, #0
|
2860 01c6 002B cmp r3, #0
|
||||||
2861 01c8 F9D1 bne .L194
|
2861 01c8 F9D1 bne .L194
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 101
|
ARM GAS /tmp/cc4Rricp.s page 101
|
||||||
|
|
||||||
|
|
||||||
2862 01ca 8CE7 b .L192
|
2862 01ca 8CE7 b .L192
|
||||||
@ -6058,7 +6058,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
1815:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
1815:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
2909 .loc 1 1815 3 is_stmt 1 discriminator 2 view .LVU911
|
2909 .loc 1 1815 3 is_stmt 1 discriminator 2 view .LVU911
|
||||||
2910 000a 0123 movs r3, #1
|
2910 000a 0123 movs r3, #1
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 102
|
ARM GAS /tmp/cc4Rricp.s page 102
|
||||||
|
|
||||||
|
|
||||||
2911 000c 80F83C30 strb r3, [r0, #60]
|
2911 000c 80F83C30 strb r3, [r0, #60]
|
||||||
@ -6118,7 +6118,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
2948 .loc 1 1835 23 view .LVU928
|
2948 .loc 1 1835 23 view .LVU928
|
||||||
2949 0038 5A62 str r2, [r3, #36]
|
2949 0038 5A62 str r2, [r3, #36]
|
||||||
1838:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
1838:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c ****
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 103
|
ARM GAS /tmp/cc4Rricp.s page 103
|
||||||
|
|
||||||
|
|
||||||
2950 .loc 1 1838 3 is_stmt 1 view .LVU929
|
2950 .loc 1 1838 3 is_stmt 1 view .LVU929
|
||||||
@ -6178,7 +6178,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
2989 .L212:
|
2989 .L212:
|
||||||
2990 .LCFI29:
|
2990 .LCFI29:
|
||||||
2991 .cfi_restore_state
|
2991 .cfi_restore_state
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 104
|
ARM GAS /tmp/cc4Rricp.s page 104
|
||||||
|
|
||||||
|
|
||||||
1820:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
1820:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c **** }
|
||||||
@ -6238,7 +6238,7 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
3042 .syntax unified
|
3042 .syntax unified
|
||||||
3043 .thumb
|
3043 .thumb
|
||||||
3044 .thumb_func
|
3044 .thumb_func
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 105
|
ARM GAS /tmp/cc4Rricp.s page 105
|
||||||
|
|
||||||
|
|
||||||
3045 .fpu fpv5-d16
|
3045 .fpu fpv5-d16
|
||||||
@ -6273,76 +6273,76 @@ ARM GAS /tmp/cc6QBWTk.s page 1
|
|||||||
3072 .file 8 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/system_stm32f7xx.h"
|
3072 .file 8 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/system_stm32f7xx.h"
|
||||||
3073 .file 9 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_adc_ex.h"
|
3073 .file 9 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_adc_ex.h"
|
||||||
3074 .file 10 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h"
|
3074 .file 10 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h"
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 106
|
ARM GAS /tmp/cc4Rricp.s page 106
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 stm32f7xx_hal_adc.c
|
*ABS*:0000000000000000 stm32f7xx_hal_adc.c
|
||||||
/tmp/cc6QBWTk.s:17 .text.ADC_Init:0000000000000000 $t
|
/tmp/cc4Rricp.s:17 .text.ADC_Init:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:24 .text.ADC_Init:0000000000000000 ADC_Init
|
/tmp/cc4Rricp.s:24 .text.ADC_Init:0000000000000000 ADC_Init
|
||||||
/tmp/cc6QBWTk.s:272 .text.ADC_Init:000000000000012c $d
|
/tmp/cc4Rricp.s:272 .text.ADC_Init:000000000000012c $d
|
||||||
/tmp/cc6QBWTk.s:278 .text.HAL_ADC_MspInit:0000000000000000 $t
|
/tmp/cc4Rricp.s:278 .text.HAL_ADC_MspInit:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:285 .text.HAL_ADC_MspInit:0000000000000000 HAL_ADC_MspInit
|
/tmp/cc4Rricp.s:285 .text.HAL_ADC_MspInit:0000000000000000 HAL_ADC_MspInit
|
||||||
/tmp/cc6QBWTk.s:300 .text.HAL_ADC_Init:0000000000000000 $t
|
/tmp/cc4Rricp.s:300 .text.HAL_ADC_Init:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:307 .text.HAL_ADC_Init:0000000000000000 HAL_ADC_Init
|
/tmp/cc4Rricp.s:307 .text.HAL_ADC_Init:0000000000000000 HAL_ADC_Init
|
||||||
/tmp/cc6QBWTk.s:409 .text.HAL_ADC_Init:0000000000000054 $d
|
/tmp/cc4Rricp.s:409 .text.HAL_ADC_Init:0000000000000054 $d
|
||||||
/tmp/cc6QBWTk.s:414 .text.HAL_ADC_MspDeInit:0000000000000000 $t
|
/tmp/cc4Rricp.s:414 .text.HAL_ADC_MspDeInit:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:421 .text.HAL_ADC_MspDeInit:0000000000000000 HAL_ADC_MspDeInit
|
/tmp/cc4Rricp.s:421 .text.HAL_ADC_MspDeInit:0000000000000000 HAL_ADC_MspDeInit
|
||||||
/tmp/cc6QBWTk.s:436 .text.HAL_ADC_DeInit:0000000000000000 $t
|
/tmp/cc4Rricp.s:436 .text.HAL_ADC_DeInit:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:443 .text.HAL_ADC_DeInit:0000000000000000 HAL_ADC_DeInit
|
/tmp/cc4Rricp.s:443 .text.HAL_ADC_DeInit:0000000000000000 HAL_ADC_DeInit
|
||||||
/tmp/cc6QBWTk.s:515 .text.HAL_ADC_Start:0000000000000000 $t
|
/tmp/cc4Rricp.s:515 .text.HAL_ADC_Start:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:522 .text.HAL_ADC_Start:0000000000000000 HAL_ADC_Start
|
/tmp/cc4Rricp.s:522 .text.HAL_ADC_Start:0000000000000000 HAL_ADC_Start
|
||||||
/tmp/cc6QBWTk.s:775 .text.HAL_ADC_Start:000000000000011c $d
|
/tmp/cc4Rricp.s:775 .text.HAL_ADC_Start:000000000000011c $d
|
||||||
/tmp/cc6QBWTk.s:785 .text.HAL_ADC_Stop:0000000000000000 $t
|
/tmp/cc4Rricp.s:785 .text.HAL_ADC_Stop:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:792 .text.HAL_ADC_Stop:0000000000000000 HAL_ADC_Stop
|
/tmp/cc4Rricp.s:792 .text.HAL_ADC_Stop:0000000000000000 HAL_ADC_Stop
|
||||||
/tmp/cc6QBWTk.s:850 .text.HAL_ADC_Stop:000000000000003c $d
|
/tmp/cc4Rricp.s:850 .text.HAL_ADC_Stop:000000000000003c $d
|
||||||
/tmp/cc6QBWTk.s:855 .text.HAL_ADC_PollForConversion:0000000000000000 $t
|
/tmp/cc4Rricp.s:855 .text.HAL_ADC_PollForConversion:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:862 .text.HAL_ADC_PollForConversion:0000000000000000 HAL_ADC_PollForConversion
|
/tmp/cc4Rricp.s:862 .text.HAL_ADC_PollForConversion:0000000000000000 HAL_ADC_PollForConversion
|
||||||
/tmp/cc6QBWTk.s:1036 .text.HAL_ADC_PollForEvent:0000000000000000 $t
|
/tmp/cc4Rricp.s:1036 .text.HAL_ADC_PollForEvent:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:1043 .text.HAL_ADC_PollForEvent:0000000000000000 HAL_ADC_PollForEvent
|
/tmp/cc4Rricp.s:1043 .text.HAL_ADC_PollForEvent:0000000000000000 HAL_ADC_PollForEvent
|
||||||
/tmp/cc6QBWTk.s:1158 .text.HAL_ADC_Start_IT:0000000000000000 $t
|
/tmp/cc4Rricp.s:1158 .text.HAL_ADC_Start_IT:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:1165 .text.HAL_ADC_Start_IT:0000000000000000 HAL_ADC_Start_IT
|
/tmp/cc4Rricp.s:1165 .text.HAL_ADC_Start_IT:0000000000000000 HAL_ADC_Start_IT
|
||||||
/tmp/cc6QBWTk.s:1424 .text.HAL_ADC_Start_IT:0000000000000128 $d
|
/tmp/cc4Rricp.s:1424 .text.HAL_ADC_Start_IT:0000000000000128 $d
|
||||||
/tmp/cc6QBWTk.s:1435 .text.HAL_ADC_Stop_IT:0000000000000000 $t
|
/tmp/cc4Rricp.s:1435 .text.HAL_ADC_Stop_IT:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:1442 .text.HAL_ADC_Stop_IT:0000000000000000 HAL_ADC_Stop_IT
|
/tmp/cc4Rricp.s:1442 .text.HAL_ADC_Stop_IT:0000000000000000 HAL_ADC_Stop_IT
|
||||||
/tmp/cc6QBWTk.s:1505 .text.HAL_ADC_Stop_IT:0000000000000044 $d
|
/tmp/cc4Rricp.s:1505 .text.HAL_ADC_Stop_IT:0000000000000044 $d
|
||||||
/tmp/cc6QBWTk.s:1511 .text.HAL_ADC_Start_DMA:0000000000000000 $t
|
/tmp/cc4Rricp.s:1511 .text.HAL_ADC_Start_DMA:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:1518 .text.HAL_ADC_Start_DMA:0000000000000000 HAL_ADC_Start_DMA
|
/tmp/cc4Rricp.s:1518 .text.HAL_ADC_Start_DMA:0000000000000000 HAL_ADC_Start_DMA
|
||||||
/tmp/cc6QBWTk.s:1811 .text.HAL_ADC_Start_DMA:000000000000015c $d
|
/tmp/cc4Rricp.s:1811 .text.HAL_ADC_Start_DMA:000000000000015c $d
|
||||||
/tmp/cc6QBWTk.s:2398 .text.ADC_DMAConvCplt:0000000000000000 ADC_DMAConvCplt
|
/tmp/cc4Rricp.s:2398 .text.ADC_DMAConvCplt:0000000000000000 ADC_DMAConvCplt
|
||||||
/tmp/cc6QBWTk.s:2024 .text.ADC_DMAHalfConvCplt:0000000000000000 ADC_DMAHalfConvCplt
|
/tmp/cc4Rricp.s:2024 .text.ADC_DMAHalfConvCplt:0000000000000000 ADC_DMAHalfConvCplt
|
||||||
/tmp/cc6QBWTk.s:2357 .text.ADC_DMAError:0000000000000000 ADC_DMAError
|
/tmp/cc4Rricp.s:2357 .text.ADC_DMAError:0000000000000000 ADC_DMAError
|
||||||
/tmp/cc6QBWTk.s:1824 .text.HAL_ADC_Stop_DMA:0000000000000000 $t
|
/tmp/cc4Rricp.s:1824 .text.HAL_ADC_Stop_DMA:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:1831 .text.HAL_ADC_Stop_DMA:0000000000000000 HAL_ADC_Stop_DMA
|
/tmp/cc4Rricp.s:1831 .text.HAL_ADC_Stop_DMA:0000000000000000 HAL_ADC_Stop_DMA
|
||||||
/tmp/cc6QBWTk.s:1942 .text.HAL_ADC_Stop_DMA:0000000000000074 $d
|
/tmp/cc4Rricp.s:1942 .text.HAL_ADC_Stop_DMA:0000000000000074 $d
|
||||||
/tmp/cc6QBWTk.s:1947 .text.HAL_ADC_GetValue:0000000000000000 $t
|
/tmp/cc4Rricp.s:1947 .text.HAL_ADC_GetValue:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:1954 .text.HAL_ADC_GetValue:0000000000000000 HAL_ADC_GetValue
|
/tmp/cc4Rricp.s:1954 .text.HAL_ADC_GetValue:0000000000000000 HAL_ADC_GetValue
|
||||||
/tmp/cc6QBWTk.s:1974 .text.HAL_ADC_ConvCpltCallback:0000000000000000 $t
|
/tmp/cc4Rricp.s:1974 .text.HAL_ADC_ConvCpltCallback:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:1981 .text.HAL_ADC_ConvCpltCallback:0000000000000000 HAL_ADC_ConvCpltCallback
|
/tmp/cc4Rricp.s:1981 .text.HAL_ADC_ConvCpltCallback:0000000000000000 HAL_ADC_ConvCpltCallback
|
||||||
/tmp/cc6QBWTk.s:1996 .text.HAL_ADC_ConvHalfCpltCallback:0000000000000000 $t
|
/tmp/cc4Rricp.s:1996 .text.HAL_ADC_ConvHalfCpltCallback:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:2003 .text.HAL_ADC_ConvHalfCpltCallback:0000000000000000 HAL_ADC_ConvHalfCpltCallback
|
/tmp/cc4Rricp.s:2003 .text.HAL_ADC_ConvHalfCpltCallback:0000000000000000 HAL_ADC_ConvHalfCpltCallback
|
||||||
/tmp/cc6QBWTk.s:2018 .text.ADC_DMAHalfConvCplt:0000000000000000 $t
|
/tmp/cc4Rricp.s:2018 .text.ADC_DMAHalfConvCplt:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:2051 .text.HAL_ADC_LevelOutOfWindowCallback:0000000000000000 $t
|
/tmp/cc4Rricp.s:2051 .text.HAL_ADC_LevelOutOfWindowCallback:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:2058 .text.HAL_ADC_LevelOutOfWindowCallback:0000000000000000 HAL_ADC_LevelOutOfWindowCallback
|
/tmp/cc4Rricp.s:2058 .text.HAL_ADC_LevelOutOfWindowCallback:0000000000000000 HAL_ADC_LevelOutOfWindowCallback
|
||||||
/tmp/cc6QBWTk.s:2073 .text.HAL_ADC_ErrorCallback:0000000000000000 $t
|
/tmp/cc4Rricp.s:2073 .text.HAL_ADC_ErrorCallback:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:2080 .text.HAL_ADC_ErrorCallback:0000000000000000 HAL_ADC_ErrorCallback
|
/tmp/cc4Rricp.s:2080 .text.HAL_ADC_ErrorCallback:0000000000000000 HAL_ADC_ErrorCallback
|
||||||
/tmp/cc6QBWTk.s:2095 .text.HAL_ADC_IRQHandler:0000000000000000 $t
|
/tmp/cc4Rricp.s:2095 .text.HAL_ADC_IRQHandler:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:2102 .text.HAL_ADC_IRQHandler:0000000000000000 HAL_ADC_IRQHandler
|
/tmp/cc4Rricp.s:2102 .text.HAL_ADC_IRQHandler:0000000000000000 HAL_ADC_IRQHandler
|
||||||
/tmp/cc6QBWTk.s:2351 .text.ADC_DMAError:0000000000000000 $t
|
/tmp/cc4Rricp.s:2351 .text.ADC_DMAError:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:2392 .text.ADC_DMAConvCplt:0000000000000000 $t
|
/tmp/cc4Rricp.s:2392 .text.ADC_DMAConvCplt:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:2507 .text.HAL_ADC_ConfigChannel:0000000000000000 $t
|
/tmp/cc4Rricp.s:2507 .text.HAL_ADC_ConfigChannel:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:2514 .text.HAL_ADC_ConfigChannel:0000000000000000 HAL_ADC_ConfigChannel
|
/tmp/cc4Rricp.s:2514 .text.HAL_ADC_ConfigChannel:0000000000000000 HAL_ADC_ConfigChannel
|
||||||
/tmp/cc6QBWTk.s:2872 .text.HAL_ADC_ConfigChannel:00000000000001d0 $d
|
/tmp/cc4Rricp.s:2872 .text.HAL_ADC_ConfigChannel:00000000000001d0 $d
|
||||||
ARM GAS /tmp/cc6QBWTk.s page 107
|
ARM GAS /tmp/cc4Rricp.s page 107
|
||||||
|
|
||||||
|
|
||||||
/tmp/cc6QBWTk.s:2881 .text.HAL_ADC_AnalogWDGConfig:0000000000000000 $t
|
/tmp/cc4Rricp.s:2881 .text.HAL_ADC_AnalogWDGConfig:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:2888 .text.HAL_ADC_AnalogWDGConfig:0000000000000000 HAL_ADC_AnalogWDGConfig
|
/tmp/cc4Rricp.s:2888 .text.HAL_ADC_AnalogWDGConfig:0000000000000000 HAL_ADC_AnalogWDGConfig
|
||||||
/tmp/cc6QBWTk.s:3010 .text.HAL_ADC_AnalogWDGConfig:0000000000000074 $d
|
/tmp/cc4Rricp.s:3010 .text.HAL_ADC_AnalogWDGConfig:0000000000000074 $d
|
||||||
/tmp/cc6QBWTk.s:3015 .text.HAL_ADC_GetState:0000000000000000 $t
|
/tmp/cc4Rricp.s:3015 .text.HAL_ADC_GetState:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:3022 .text.HAL_ADC_GetState:0000000000000000 HAL_ADC_GetState
|
/tmp/cc4Rricp.s:3022 .text.HAL_ADC_GetState:0000000000000000 HAL_ADC_GetState
|
||||||
/tmp/cc6QBWTk.s:3040 .text.HAL_ADC_GetError:0000000000000000 $t
|
/tmp/cc4Rricp.s:3040 .text.HAL_ADC_GetError:0000000000000000 $t
|
||||||
/tmp/cc6QBWTk.s:3047 .text.HAL_ADC_GetError:0000000000000000 HAL_ADC_GetError
|
/tmp/cc4Rricp.s:3047 .text.HAL_ADC_GetError:0000000000000000 HAL_ADC_GetError
|
||||||
|
|
||||||
UNDEFINED SYMBOLS
|
UNDEFINED SYMBOLS
|
||||||
SystemCoreClock
|
SystemCoreClock
|
||||||
|
|||||||
Binary file not shown.
@ -29,7 +29,9 @@ build/stm32f7xx_hal_adc_ex.o: \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
||||||
Inc/stm32f7xx_hal_conf.h:
|
Inc/stm32f7xx_hal_conf.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
||||||
@ -62,3 +64,5 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/ccwEB4d6.s page 1
|
ARM GAS /tmp/cctkyfI3.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
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()
|
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()
|
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())
|
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()
|
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 ------------------------------------------------------------------*/
|
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"
|
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 ****
|
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
|
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
|
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.
|
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
|
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 **** */
|
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);
|
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 ****
|
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 */
|
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))
|
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 **** {
|
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 */
|
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);
|
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 ****
|
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 **** {
|
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);
|
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);
|
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)
|
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 ****
|
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 */
|
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))
|
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 **** {
|
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 **** }
|
428:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** }
|
||||||
429: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 */
|
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);
|
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: */
|
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 */
|
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 */
|
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) */
|
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 ****
|
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 */
|
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. */
|
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);
|
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
|
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 */
|
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)
|
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 **** {
|
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 ;
|
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 ****
|
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 */
|
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): */
|
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));
|
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 ****
|
714:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||||
715:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* Process locked */
|
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);
|
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)
|
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 **** {
|
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 */
|
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);
|
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 */
|
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);
|
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 ****
|
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 */
|
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
|
884:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** else
|
||||||
885:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** {
|
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 */
|
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);
|
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
|
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 **** */
|
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
|
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 **** {
|
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. */
|
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) &&
|
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) &&
|
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) ||
|
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}
|
33 0000 08B5 push {r3, lr}
|
||||||
34 .LCFI0:
|
34 .LCFI0:
|
||||||
35 .cfi_def_cfa_offset 8
|
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
|
36 .cfi_offset 3, -8
|
||||||
@ -1198,7 +1198,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
|||||||
82 0002 806B ldr r0, [r0, #56]
|
82 0002 806B ldr r0, [r0, #56]
|
||||||
83 .LVL5:
|
83 .LVL5:
|
||||||
1039:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** }
|
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
|
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]
|
129 0016 9168 ldr r1, [r2, #8]
|
||||||
999:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** (hadc->Init.ContinuousConvMode == DISABLE) &&
|
999:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** (hadc->Init.ContinuousConvMode == DISABLE) &&
|
||||||
130 .loc 1 999 7 view .LVU26
|
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
|
131 0018 11F0405F tst r1, #805306368
|
||||||
@ -1318,7 +1318,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
|||||||
171 0054 FFF7FEFF bl HAL_ADC_ConvCpltCallback
|
171 0054 FFF7FEFF bl HAL_ADC_ConvCpltCallback
|
||||||
172 .LVL10:
|
172 .LVL10:
|
||||||
173 .L5:
|
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 ****
|
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
|
218 .loc 1 153 3 view .LVU52
|
||||||
153:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
153:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||||
219 .loc 1 153 3 view .LVU53
|
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
|
220 0006 90F83C30 ldrb r3, [r0, #60] @ zero_extendqisi2
|
||||||
@ -1438,7 +1438,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
|||||||
259 .L14:
|
259 .L14:
|
||||||
167:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** {
|
167:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** {
|
||||||
260 .loc 1 167 10 is_stmt 1 view .LVU69
|
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 **** {
|
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
|
299 .loc 1 203 8 is_stmt 0 view .LVU85
|
||||||
300 0074 1F4B ldr r3, .L25+12
|
300 0074 1F4B ldr r3, .L25+12
|
||||||
301 0076 5B68 ldr r3, [r3, #4]
|
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 **** {
|
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)
|
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
|
341 .loc 1 216 14 is_stmt 0 view .LVU101
|
||||||
342 00a4 5A68 ldr r2, [r3, #4]
|
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
|
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
|
384 00d6 02B0 add sp, sp, #8
|
||||||
385 .LCFI4:
|
385 .LCFI4:
|
||||||
386 .cfi_remember_state
|
386 .cfi_remember_state
|
||||||
ARM GAS /tmp/ccwEB4d6.s page 28
|
ARM GAS /tmp/cctkyfI3.s page 28
|
||||||
|
|
||||||
|
|
||||||
387 .cfi_def_cfa_offset 0
|
387 .cfi_def_cfa_offset 0
|
||||||
@ -1678,7 +1678,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
|||||||
437 @ link register save eliminated.
|
437 @ link register save eliminated.
|
||||||
245:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** __IO uint32_t counter = 0;
|
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
|
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
|
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)
|
263:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** while(counter != 0)
|
||||||
478 .loc 1 263 13 view .LVU137
|
478 .loc 1 263 13 view .LVU137
|
||||||
479 0036 0193 str r3, [sp, #4]
|
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 **** {
|
264:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** {
|
||||||
@ -1798,7 +1798,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
|||||||
519 .L33:
|
519 .L33:
|
||||||
293:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
293:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||||
520 .loc 1 293 5 view .LVU153
|
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 ****
|
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]
|
559 009a 8B68 ldr r3, [r1, #8]
|
||||||
560 009c 43F48003 orr r3, r3, #4194304
|
560 009c 43F48003 orr r3, r3, #4194304
|
||||||
561 00a0 8B60 str r3, [r1, #8]
|
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 **** }
|
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
|
601 .loc 1 334 10 view .LVU184
|
||||||
602 00ca 0020 movs r0, #0
|
602 00ca 0020 movs r0, #0
|
||||||
603 00cc 08E0 b .L28
|
603 00cc 08E0 b .L28
|
||||||
ARM GAS /tmp/ccwEB4d6.s page 33
|
ARM GAS /tmp/cctkyfI3.s page 33
|
||||||
|
|
||||||
|
|
||||||
604 .LVL43:
|
604 .LVL43:
|
||||||
@ -1978,7 +1978,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
|||||||
649 00f0 00000000 .word SystemCoreClock
|
649 00f0 00000000 .word SystemCoreClock
|
||||||
650 00f4 83DE1B43 .word 1125899907
|
650 00f4 83DE1B43 .word 1125899907
|
||||||
651 00f8 FECFFFFF .word -12290
|
651 00f8 FECFFFFF .word -12290
|
||||||
ARM GAS /tmp/ccwEB4d6.s page 34
|
ARM GAS /tmp/cctkyfI3.s page 34
|
||||||
|
|
||||||
|
|
||||||
652 00fc 00230140 .word 1073816320
|
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) )
|
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
|
696 .loc 1 365 57 discriminator 1 view .LVU206
|
||||||
697 001c 11F4806F tst r1, #1024
|
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
|
698 0020 10D1 bne .L45
|
||||||
@ -2098,7 +2098,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
|||||||
738 .loc 1 393 3 view .LVU220
|
738 .loc 1 393 3 view .LVU220
|
||||||
393:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** }
|
393:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** }
|
||||||
739 .loc 1 393 10 is_stmt 0 view .LVU221
|
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
|
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 ****
|
408:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||||
789 .loc 1 408 3 view .LVU229
|
789 .loc 1 408 3 view .LVU229
|
||||||
408:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
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
|
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;
|
423:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** return HAL_TIMEOUT;
|
||||||
828 .loc 1 423 11 view .LVU247
|
828 .loc 1 423 11 view .LVU247
|
||||||
424:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** }
|
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
|
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
|
869 .loc 1 445 7 view .LVU262
|
||||||
870 006a 5A68 ldr r2, [r3, #4]
|
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) &&
|
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
|
871 .loc 1 444 62 view .LVU263
|
||||||
@ -2338,7 +2338,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
|||||||
912 00a2 0020 movs r0, #0
|
912 00a2 0020 movs r0, #0
|
||||||
913 00a4 FAE7 b .L56
|
913 00a4 FAE7 b .L56
|
||||||
914 .L62:
|
914 .L62:
|
||||||
ARM GAS /tmp/ccwEB4d6.s page 40
|
ARM GAS /tmp/cctkyfI3.s page 40
|
||||||
|
|
||||||
|
|
||||||
915 00a6 0020 movs r0, #0
|
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) )
|
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
|
960 .loc 1 490 5 discriminator 2 view .LVU288
|
||||||
961 0012 12F4807F tst r2, #256
|
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
|
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
|
1003 .loc 1 514 20 is_stmt 0 view .LVU301
|
||||||
1004 0054 0120 movs r0, #1
|
1004 0054 0120 movs r0, #1
|
||||||
1005 .LVL71:
|
1005 .LVL71:
|
||||||
ARM GAS /tmp/ccwEB4d6.s page 42
|
ARM GAS /tmp/cctkyfI3.s page 42
|
||||||
|
|
||||||
|
|
||||||
1006 .L71:
|
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;
|
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
|
1052 .loc 1 537 1 is_stmt 0 view .LVU312
|
||||||
1053 0000 82B0 sub sp, sp, #8
|
1053 0000 82B0 sub sp, sp, #8
|
||||||
ARM GAS /tmp/ccwEB4d6.s page 43
|
ARM GAS /tmp/cctkyfI3.s page 43
|
||||||
|
|
||||||
|
|
||||||
1054 .LCFI10:
|
1054 .LCFI10:
|
||||||
@ -2578,7 +2578,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
|||||||
1094 .LCFI11:
|
1094 .LCFI11:
|
||||||
1095 .cfi_remember_state
|
1095 .cfi_remember_state
|
||||||
1096 .cfi_def_cfa_offset 0
|
1096 .cfi_def_cfa_offset 0
|
||||||
ARM GAS /tmp/ccwEB4d6.s page 44
|
ARM GAS /tmp/cctkyfI3.s page 44
|
||||||
|
|
||||||
|
|
||||||
1097 @ sp needed
|
1097 @ sp needed
|
||||||
@ -2638,7 +2638,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
|||||||
1137 .global HAL_ADCEx_MultiModeStart_DMA
|
1137 .global HAL_ADCEx_MultiModeStart_DMA
|
||||||
1138 .syntax unified
|
1138 .syntax unified
|
||||||
1139 .thumb
|
1139 .thumb
|
||||||
ARM GAS /tmp/ccwEB4d6.s page 45
|
ARM GAS /tmp/cctkyfI3.s page 45
|
||||||
|
|
||||||
|
|
||||||
1140 .thumb_func
|
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
|
1181 .loc 1 601 11 is_stmt 0 discriminator 2 view .LVU355
|
||||||
1182 001a 0268 ldr r2, [r0]
|
1182 001a 0268 ldr r2, [r0]
|
||||||
601:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** {
|
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
|
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
|
1222 .loc 1 616 6 is_stmt 0 view .LVU371
|
||||||
1223 004c 2068 ldr r0, [r4]
|
1223 004c 2068 ldr r0, [r4]
|
||||||
1224 004e 8268 ldr r2, [r0, #8]
|
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 **** {
|
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]
|
1264 008c A26B ldr r2, [r4, #56]
|
||||||
650:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
650:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||||
1265 .loc 1 650 40 view .LVU387
|
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
|
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
|
1305 .loc 1 680 5 is_stmt 0 view .LVU402
|
||||||
1306 00c4 A06B ldr r0, [r4, #56]
|
1306 00c4 A06B ldr r0, [r4, #56]
|
||||||
1307 00c6 FFF7FEFF bl HAL_DMA_Start_IT
|
1307 00c6 FFF7FEFF bl HAL_DMA_Start_IT
|
||||||
ARM GAS /tmp/ccwEB4d6.s page 49
|
ARM GAS /tmp/cctkyfI3.s page 49
|
||||||
|
|
||||||
|
|
||||||
1308 .LVL84:
|
1308 .LVL84:
|
||||||
@ -2938,7 +2938,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
|||||||
1349 0100 6364 str r3, [r4, #68]
|
1349 0100 6364 str r3, [r4, #68]
|
||||||
699:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** }
|
699:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** }
|
||||||
1350 .loc 1 699 10 is_stmt 0 view .LVU416
|
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
|
1351 0102 0020 movs r0, #0
|
||||||
@ -2998,7 +2998,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
|||||||
1402 @ args = 0, pretend = 0, frame = 0
|
1402 @ args = 0, pretend = 0, frame = 0
|
||||||
1403 @ frame_needed = 0, uses_anonymous_args = 0
|
1403 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
710:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
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
|
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
|
1443 .loc 1 745 3 view .LVU437
|
||||||
746:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
746:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||||
1444 .loc 1 746 1 is_stmt 0 view .LVU438
|
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}
|
1445 002e 10BD pop {r4, pc}
|
||||||
@ -3118,7 +3118,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
|||||||
1490 .LFE148:
|
1490 .LFE148:
|
||||||
1492 .section .text.HAL_ADCEx_MultiModeGetValue,"ax",%progbits
|
1492 .section .text.HAL_ADCEx_MultiModeGetValue,"ax",%progbits
|
||||||
1493 .align 1
|
1493 .align 1
|
||||||
ARM GAS /tmp/ccwEB4d6.s page 53
|
ARM GAS /tmp/cctkyfI3.s page 53
|
||||||
|
|
||||||
|
|
||||||
1494 .global HAL_ADCEx_MultiModeGetValue
|
1494 .global HAL_ADCEx_MultiModeGetValue
|
||||||
@ -3178,7 +3178,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
|||||||
1543 .LFE150:
|
1543 .LFE150:
|
||||||
1545 .section .text.HAL_ADCEx_InjectedConfigChannel,"ax",%progbits
|
1545 .section .text.HAL_ADCEx_InjectedConfigChannel,"ax",%progbits
|
||||||
1546 .align 1
|
1546 .align 1
|
||||||
ARM GAS /tmp/ccwEB4d6.s page 54
|
ARM GAS /tmp/cctkyfI3.s page 54
|
||||||
|
|
||||||
|
|
||||||
1547 .global HAL_ADCEx_InjectedConfigChannel
|
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 **** {
|
817:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** {
|
||||||
1586 .loc 1 817 22 is_stmt 0 discriminator 2 view .LVU472
|
1586 .loc 1 817 22 is_stmt 0 discriminator 2 view .LVU472
|
||||||
1587 0012 0B68 ldr r3, [r1]
|
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 **** {
|
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
|
1627 .loc 1 836 3 is_stmt 1 view .LVU487
|
||||||
836:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
836:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||||
1628 .loc 1 836 7 is_stmt 0 view .LVU488
|
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]
|
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 ****
|
844:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||||
1671 .loc 1 844 24 view .LVU501
|
1671 .loc 1 844 24 view .LVU501
|
||||||
1672 009c 1343 orrs r3, r3, r2
|
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]
|
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 **** }
|
859:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** }
|
||||||
1710 .loc 1 859 43 view .LVU519
|
1710 .loc 1 859 43 view .LVU519
|
||||||
1711 00ca CC69 ldr r4, [r1, #28]
|
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 **** }
|
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
|
1750 00f6 032B cmp r3, #3
|
||||||
1751 00f8 5CD0 beq .L127
|
1751 00f8 5CD0 beq .L127
|
||||||
1752 00fa 012B cmp r3, #1
|
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
|
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 **** }
|
831:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** }
|
||||||
1791 .loc 1 831 27 view .LVU552
|
1791 .loc 1 831 27 view .LVU552
|
||||||
1792 012c 2A69 ldr r2, [r5, #16]
|
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 **** }
|
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
|
1833 0166 23F48053 bic r3, r3, #4096
|
||||||
1834 016a 5360 str r3, [r2, #4]
|
1834 016a 5360 str r3, [r2, #4]
|
||||||
1835 016c C0E7 b .L125
|
1835 016c C0E7 b .L125
|
||||||
ARM GAS /tmp/ccwEB4d6.s page 61
|
ARM GAS /tmp/cctkyfI3.s page 61
|
||||||
|
|
||||||
|
|
||||||
1836 .L137:
|
1836 .L137:
|
||||||
@ -3658,7 +3658,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
|||||||
929:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
929:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c ****
|
||||||
1874 .loc 1 929 3 view .LVU583
|
1874 .loc 1 929 3 view .LVU583
|
||||||
1875 0192 0023 movs r3, #0
|
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]
|
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;
|
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
|
1916 .loc 1 904 11 is_stmt 0 view .LVU598
|
||||||
1917 01b4 0268 ldr r2, [r0]
|
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;
|
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 **** }
|
925:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** }
|
||||||
1958 .loc 1 925 14 is_stmt 0 view .LVU613
|
1958 .loc 1 925 14 is_stmt 0 view .LVU613
|
||||||
1959 01e8 064A ldr r2, .L140+12
|
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]
|
1960 01ea 5368 ldr r3, [r2, #4]
|
||||||
@ -3838,7 +3838,7 @@ ARM GAS /tmp/ccwEB4d6.s page 1
|
|||||||
2008 0006 23D0 beq .L144
|
2008 0006 23D0 beq .L144
|
||||||
944:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c **** /* Check the parameters */
|
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
|
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}
|
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
|
2049 .loc 1 963 24 discriminator 2 view .LVU637
|
||||||
2050 003c 8968 ldr r1, [r1, #8]
|
2050 003c 8968 ldr r1, [r1, #8]
|
||||||
2051 .LVL106:
|
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 ****
|
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"
|
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"
|
2093 .file 9 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/system_stm32f7xx.h"
|
||||||
2094 .file 10 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.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
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 stm32f7xx_hal_adc_ex.c
|
*ABS*:0000000000000000 stm32f7xx_hal_adc_ex.c
|
||||||
/tmp/ccwEB4d6.s:17 .text.ADC_MultiModeDMAError:0000000000000000 $t
|
/tmp/cctkyfI3.s:17 .text.ADC_MultiModeDMAError:0000000000000000 $t
|
||||||
/tmp/ccwEB4d6.s:24 .text.ADC_MultiModeDMAError:0000000000000000 ADC_MultiModeDMAError
|
/tmp/cctkyfI3.s:24 .text.ADC_MultiModeDMAError:0000000000000000 ADC_MultiModeDMAError
|
||||||
/tmp/ccwEB4d6.s:60 .text.ADC_MultiModeDMAHalfConvCplt:0000000000000000 $t
|
/tmp/cctkyfI3.s:60 .text.ADC_MultiModeDMAHalfConvCplt:0000000000000000 $t
|
||||||
/tmp/ccwEB4d6.s:66 .text.ADC_MultiModeDMAHalfConvCplt:0000000000000000 ADC_MultiModeDMAHalfConvCplt
|
/tmp/cctkyfI3.s:66 .text.ADC_MultiModeDMAHalfConvCplt:0000000000000000 ADC_MultiModeDMAHalfConvCplt
|
||||||
/tmp/ccwEB4d6.s:93 .text.ADC_MultiModeDMAConvCplt:0000000000000000 $t
|
/tmp/cctkyfI3.s:93 .text.ADC_MultiModeDMAConvCplt:0000000000000000 $t
|
||||||
/tmp/ccwEB4d6.s:99 .text.ADC_MultiModeDMAConvCplt:0000000000000000 ADC_MultiModeDMAConvCplt
|
/tmp/cctkyfI3.s:99 .text.ADC_MultiModeDMAConvCplt:0000000000000000 ADC_MultiModeDMAConvCplt
|
||||||
/tmp/ccwEB4d6.s:193 .text.HAL_ADCEx_InjectedStart:0000000000000000 $t
|
/tmp/cctkyfI3.s:193 .text.HAL_ADCEx_InjectedStart:0000000000000000 $t
|
||||||
/tmp/ccwEB4d6.s:200 .text.HAL_ADCEx_InjectedStart:0000000000000000 HAL_ADCEx_InjectedStart
|
/tmp/cctkyfI3.s:200 .text.HAL_ADCEx_InjectedStart:0000000000000000 HAL_ADCEx_InjectedStart
|
||||||
/tmp/ccwEB4d6.s:414 .text.HAL_ADCEx_InjectedStart:00000000000000e8 $d
|
/tmp/cctkyfI3.s:414 .text.HAL_ADCEx_InjectedStart:00000000000000e8 $d
|
||||||
/tmp/ccwEB4d6.s:423 .text.HAL_ADCEx_InjectedStart_IT:0000000000000000 $t
|
/tmp/cctkyfI3.s:423 .text.HAL_ADCEx_InjectedStart_IT:0000000000000000 $t
|
||||||
/tmp/ccwEB4d6.s:430 .text.HAL_ADCEx_InjectedStart_IT:0000000000000000 HAL_ADCEx_InjectedStart_IT
|
/tmp/cctkyfI3.s:430 .text.HAL_ADCEx_InjectedStart_IT:0000000000000000 HAL_ADCEx_InjectedStart_IT
|
||||||
/tmp/ccwEB4d6.s:649 .text.HAL_ADCEx_InjectedStart_IT:00000000000000f0 $d
|
/tmp/cctkyfI3.s:649 .text.HAL_ADCEx_InjectedStart_IT:00000000000000f0 $d
|
||||||
/tmp/ccwEB4d6.s:658 .text.HAL_ADCEx_InjectedStop:0000000000000000 $t
|
/tmp/cctkyfI3.s:658 .text.HAL_ADCEx_InjectedStop:0000000000000000 $t
|
||||||
/tmp/ccwEB4d6.s:665 .text.HAL_ADCEx_InjectedStop:0000000000000000 HAL_ADCEx_InjectedStop
|
/tmp/cctkyfI3.s:665 .text.HAL_ADCEx_InjectedStop:0000000000000000 HAL_ADCEx_InjectedStop
|
||||||
/tmp/ccwEB4d6.s:758 .text.HAL_ADCEx_InjectedStop:0000000000000060 $d
|
/tmp/cctkyfI3.s:758 .text.HAL_ADCEx_InjectedStop:0000000000000060 $d
|
||||||
/tmp/ccwEB4d6.s:763 .text.HAL_ADCEx_InjectedPollForConversion:0000000000000000 $t
|
/tmp/cctkyfI3.s:763 .text.HAL_ADCEx_InjectedPollForConversion:0000000000000000 $t
|
||||||
/tmp/ccwEB4d6.s:770 .text.HAL_ADCEx_InjectedPollForConversion:0000000000000000 HAL_ADCEx_InjectedPollForConversion
|
/tmp/cctkyfI3.s:770 .text.HAL_ADCEx_InjectedPollForConversion:0000000000000000 HAL_ADCEx_InjectedPollForConversion
|
||||||
/tmp/ccwEB4d6.s:928 .text.HAL_ADCEx_InjectedStop_IT:0000000000000000 $t
|
/tmp/cctkyfI3.s:928 .text.HAL_ADCEx_InjectedStop_IT:0000000000000000 $t
|
||||||
/tmp/ccwEB4d6.s:935 .text.HAL_ADCEx_InjectedStop_IT:0000000000000000 HAL_ADCEx_InjectedStop_IT
|
/tmp/cctkyfI3.s:935 .text.HAL_ADCEx_InjectedStop_IT:0000000000000000 HAL_ADCEx_InjectedStop_IT
|
||||||
/tmp/ccwEB4d6.s:1032 .text.HAL_ADCEx_InjectedStop_IT:0000000000000068 $d
|
/tmp/cctkyfI3.s:1032 .text.HAL_ADCEx_InjectedStop_IT:0000000000000068 $d
|
||||||
/tmp/ccwEB4d6.s:1037 .text.HAL_ADCEx_InjectedGetValue:0000000000000000 $t
|
/tmp/cctkyfI3.s:1037 .text.HAL_ADCEx_InjectedGetValue:0000000000000000 $t
|
||||||
/tmp/ccwEB4d6.s:1044 .text.HAL_ADCEx_InjectedGetValue:0000000000000000 HAL_ADCEx_InjectedGetValue
|
/tmp/cctkyfI3.s:1044 .text.HAL_ADCEx_InjectedGetValue:0000000000000000 HAL_ADCEx_InjectedGetValue
|
||||||
/tmp/ccwEB4d6.s:1073 .text.HAL_ADCEx_InjectedGetValue:0000000000000018 $d
|
/tmp/cctkyfI3.s:1073 .text.HAL_ADCEx_InjectedGetValue:0000000000000018 $d
|
||||||
/tmp/ccwEB4d6.s:1077 .text.HAL_ADCEx_InjectedGetValue:000000000000001c $t
|
/tmp/cctkyfI3.s:1077 .text.HAL_ADCEx_InjectedGetValue:000000000000001c $t
|
||||||
/tmp/ccwEB4d6.s:1136 .text.HAL_ADCEx_MultiModeStart_DMA:0000000000000000 $t
|
/tmp/cctkyfI3.s:1136 .text.HAL_ADCEx_MultiModeStart_DMA:0000000000000000 $t
|
||||||
/tmp/ccwEB4d6.s:1143 .text.HAL_ADCEx_MultiModeStart_DMA:0000000000000000 HAL_ADCEx_MultiModeStart_DMA
|
/tmp/cctkyfI3.s:1143 .text.HAL_ADCEx_MultiModeStart_DMA:0000000000000000 HAL_ADCEx_MultiModeStart_DMA
|
||||||
/tmp/ccwEB4d6.s:1378 .text.HAL_ADCEx_MultiModeStart_DMA:0000000000000110 $d
|
/tmp/cctkyfI3.s:1378 .text.HAL_ADCEx_MultiModeStart_DMA:0000000000000110 $d
|
||||||
/tmp/ccwEB4d6.s:1390 .text.HAL_ADCEx_MultiModeStop_DMA:0000000000000000 $t
|
/tmp/cctkyfI3.s:1390 .text.HAL_ADCEx_MultiModeStop_DMA:0000000000000000 $t
|
||||||
/tmp/ccwEB4d6.s:1397 .text.HAL_ADCEx_MultiModeStop_DMA:0000000000000000 HAL_ADCEx_MultiModeStop_DMA
|
/tmp/cctkyfI3.s:1397 .text.HAL_ADCEx_MultiModeStop_DMA:0000000000000000 HAL_ADCEx_MultiModeStop_DMA
|
||||||
/tmp/ccwEB4d6.s:1487 .text.HAL_ADCEx_MultiModeStop_DMA:000000000000005c $d
|
/tmp/cctkyfI3.s:1487 .text.HAL_ADCEx_MultiModeStop_DMA:000000000000005c $d
|
||||||
/tmp/ccwEB4d6.s:1493 .text.HAL_ADCEx_MultiModeGetValue:0000000000000000 $t
|
/tmp/cctkyfI3.s:1493 .text.HAL_ADCEx_MultiModeGetValue:0000000000000000 $t
|
||||||
/tmp/ccwEB4d6.s:1500 .text.HAL_ADCEx_MultiModeGetValue:0000000000000000 HAL_ADCEx_MultiModeGetValue
|
/tmp/cctkyfI3.s:1500 .text.HAL_ADCEx_MultiModeGetValue:0000000000000000 HAL_ADCEx_MultiModeGetValue
|
||||||
/tmp/ccwEB4d6.s:1519 .text.HAL_ADCEx_MultiModeGetValue:0000000000000008 $d
|
/tmp/cctkyfI3.s:1519 .text.HAL_ADCEx_MultiModeGetValue:0000000000000008 $d
|
||||||
/tmp/ccwEB4d6.s:1524 .text.HAL_ADCEx_InjectedConvCpltCallback:0000000000000000 $t
|
/tmp/cctkyfI3.s:1524 .text.HAL_ADCEx_InjectedConvCpltCallback:0000000000000000 $t
|
||||||
/tmp/ccwEB4d6.s:1531 .text.HAL_ADCEx_InjectedConvCpltCallback:0000000000000000 HAL_ADCEx_InjectedConvCpltCallback
|
/tmp/cctkyfI3.s:1531 .text.HAL_ADCEx_InjectedConvCpltCallback:0000000000000000 HAL_ADCEx_InjectedConvCpltCallback
|
||||||
/tmp/ccwEB4d6.s:1546 .text.HAL_ADCEx_InjectedConfigChannel:0000000000000000 $t
|
/tmp/cctkyfI3.s:1546 .text.HAL_ADCEx_InjectedConfigChannel:0000000000000000 $t
|
||||||
/tmp/ccwEB4d6.s:1553 .text.HAL_ADCEx_InjectedConfigChannel:0000000000000000 HAL_ADCEx_InjectedConfigChannel
|
/tmp/cctkyfI3.s:1553 .text.HAL_ADCEx_InjectedConfigChannel:0000000000000000 HAL_ADCEx_InjectedConfigChannel
|
||||||
/tmp/ccwEB4d6.s:1977 .text.HAL_ADCEx_InjectedConfigChannel:00000000000001f8 $d
|
/tmp/cctkyfI3.s:1977 .text.HAL_ADCEx_InjectedConfigChannel:00000000000001f8 $d
|
||||||
/tmp/ccwEB4d6.s:1986 .text.HAL_ADCEx_MultiModeConfigChannel:0000000000000000 $t
|
/tmp/cctkyfI3.s:1986 .text.HAL_ADCEx_MultiModeConfigChannel:0000000000000000 $t
|
||||||
/tmp/ccwEB4d6.s:1993 .text.HAL_ADCEx_MultiModeConfigChannel:0000000000000000 HAL_ADCEx_MultiModeConfigChannel
|
/tmp/cctkyfI3.s:1993 .text.HAL_ADCEx_MultiModeConfigChannel:0000000000000000 HAL_ADCEx_MultiModeConfigChannel
|
||||||
/tmp/ccwEB4d6.s:2080 .text.HAL_ADCEx_MultiModeConfigChannel:0000000000000054 $d
|
/tmp/cctkyfI3.s:2080 .text.HAL_ADCEx_MultiModeConfigChannel:0000000000000054 $d
|
||||||
|
|
||||||
UNDEFINED SYMBOLS
|
UNDEFINED SYMBOLS
|
||||||
HAL_ADC_ErrorCallback
|
HAL_ADC_ErrorCallback
|
||||||
|
|||||||
Binary file not shown.
@ -29,7 +29,9 @@ build/stm32f7xx_hal_cortex.o: \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
||||||
Inc/stm32f7xx_hal_conf.h:
|
Inc/stm32f7xx_hal_conf.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
||||||
@ -62,3 +64,5 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/ccvevkMB.s page 1
|
ARM GAS /tmp/ccY34ikP.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
28:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c ****
|
28:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c ****
|
||||||
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** -@- When the NVIC_PRIORITYGROUP_0 is selected, IRQ preemption is no more possible.
|
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** -@- When the NVIC_PRIORITYGROUP_0 is selected, IRQ preemption is no more possible.
|
||||||
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** The pending IRQ priority will be managed only by the sub priority.
|
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** The pending IRQ priority will be managed only by the sub priority.
|
||||||
ARM GAS /tmp/ccvevkMB.s page 2
|
ARM GAS /tmp/ccY34ikP.s page 2
|
||||||
|
|
||||||
|
|
||||||
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c ****
|
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c ****
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
85:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** * @{
|
85:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** * @{
|
||||||
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** */
|
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** */
|
||||||
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c ****
|
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c ****
|
||||||
ARM GAS /tmp/ccvevkMB.s page 3
|
ARM GAS /tmp/ccY34ikP.s page 3
|
||||||
|
|
||||||
|
|
||||||
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** /** @defgroup CORTEX CORTEX
|
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** /** @defgroup CORTEX CORTEX
|
||||||
@ -178,7 +178,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
142:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** void HAL_NVIC_SetPriorityGrouping(uint32_t PriorityGroup)
|
142:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** void HAL_NVIC_SetPriorityGrouping(uint32_t PriorityGroup)
|
||||||
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** {
|
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** {
|
||||||
29 .loc 1 143 1 view -0
|
29 .loc 1 143 1 view -0
|
||||||
ARM GAS /tmp/ccvevkMB.s page 4
|
ARM GAS /tmp/ccY34ikP.s page 4
|
||||||
|
|
||||||
|
|
||||||
30 .cfi_startproc
|
30 .cfi_startproc
|
||||||
@ -238,7 +238,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
41:Drivers/CMSIS/Include/core_cm7.h **** \page CMSIS_MISRA_Exceptions MISRA-C:2004 Compliance Exceptions
|
41:Drivers/CMSIS/Include/core_cm7.h **** \page CMSIS_MISRA_Exceptions MISRA-C:2004 Compliance Exceptions
|
||||||
42:Drivers/CMSIS/Include/core_cm7.h **** CMSIS violates the following MISRA-C:2004 rules:
|
42:Drivers/CMSIS/Include/core_cm7.h **** CMSIS violates the following MISRA-C:2004 rules:
|
||||||
43:Drivers/CMSIS/Include/core_cm7.h ****
|
43:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
ARM GAS /tmp/ccvevkMB.s page 5
|
ARM GAS /tmp/ccY34ikP.s page 5
|
||||||
|
|
||||||
|
|
||||||
44:Drivers/CMSIS/Include/core_cm7.h **** \li Required Rule 8.5, object/function definition in header file.<br>
|
44:Drivers/CMSIS/Include/core_cm7.h **** \li Required Rule 8.5, object/function definition in header file.<br>
|
||||||
@ -298,7 +298,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
98:Drivers/CMSIS/Include/core_cm7.h **** #endif
|
98:Drivers/CMSIS/Include/core_cm7.h **** #endif
|
||||||
99:Drivers/CMSIS/Include/core_cm7.h ****
|
99:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
100:Drivers/CMSIS/Include/core_cm7.h **** #elif defined ( __GNUC__ )
|
100:Drivers/CMSIS/Include/core_cm7.h **** #elif defined ( __GNUC__ )
|
||||||
ARM GAS /tmp/ccvevkMB.s page 6
|
ARM GAS /tmp/ccY34ikP.s page 6
|
||||||
|
|
||||||
|
|
||||||
101:Drivers/CMSIS/Include/core_cm7.h **** #if defined (__VFP_FP__) && !defined(__SOFTFP__)
|
101:Drivers/CMSIS/Include/core_cm7.h **** #if defined (__VFP_FP__) && !defined(__SOFTFP__)
|
||||||
@ -358,7 +358,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
155:Drivers/CMSIS/Include/core_cm7.h **** #endif
|
155:Drivers/CMSIS/Include/core_cm7.h **** #endif
|
||||||
156:Drivers/CMSIS/Include/core_cm7.h **** #else
|
156:Drivers/CMSIS/Include/core_cm7.h **** #else
|
||||||
157:Drivers/CMSIS/Include/core_cm7.h **** #define __FPU_USED 0U
|
157:Drivers/CMSIS/Include/core_cm7.h **** #define __FPU_USED 0U
|
||||||
ARM GAS /tmp/ccvevkMB.s page 7
|
ARM GAS /tmp/ccY34ikP.s page 7
|
||||||
|
|
||||||
|
|
||||||
158:Drivers/CMSIS/Include/core_cm7.h **** #endif
|
158:Drivers/CMSIS/Include/core_cm7.h **** #endif
|
||||||
@ -418,7 +418,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
212:Drivers/CMSIS/Include/core_cm7.h **** #ifndef __NVIC_PRIO_BITS
|
212:Drivers/CMSIS/Include/core_cm7.h **** #ifndef __NVIC_PRIO_BITS
|
||||||
213:Drivers/CMSIS/Include/core_cm7.h **** #define __NVIC_PRIO_BITS 3U
|
213:Drivers/CMSIS/Include/core_cm7.h **** #define __NVIC_PRIO_BITS 3U
|
||||||
214:Drivers/CMSIS/Include/core_cm7.h **** #warning "__NVIC_PRIO_BITS not defined in device header file; using default!"
|
214:Drivers/CMSIS/Include/core_cm7.h **** #warning "__NVIC_PRIO_BITS not defined in device header file; using default!"
|
||||||
ARM GAS /tmp/ccvevkMB.s page 8
|
ARM GAS /tmp/ccY34ikP.s page 8
|
||||||
|
|
||||||
|
|
||||||
215:Drivers/CMSIS/Include/core_cm7.h **** #endif
|
215:Drivers/CMSIS/Include/core_cm7.h **** #endif
|
||||||
@ -478,7 +478,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
269:Drivers/CMSIS/Include/core_cm7.h **** */
|
269:Drivers/CMSIS/Include/core_cm7.h **** */
|
||||||
270:Drivers/CMSIS/Include/core_cm7.h ****
|
270:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
271:Drivers/CMSIS/Include/core_cm7.h **** /**
|
271:Drivers/CMSIS/Include/core_cm7.h **** /**
|
||||||
ARM GAS /tmp/ccvevkMB.s page 9
|
ARM GAS /tmp/ccY34ikP.s page 9
|
||||||
|
|
||||||
|
|
||||||
272:Drivers/CMSIS/Include/core_cm7.h **** \brief Union type to access the Application Program Status Register (APSR).
|
272:Drivers/CMSIS/Include/core_cm7.h **** \brief Union type to access the Application Program Status Register (APSR).
|
||||||
@ -538,7 +538,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
326:Drivers/CMSIS/Include/core_cm7.h ****
|
326:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
327:Drivers/CMSIS/Include/core_cm7.h ****
|
327:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
328:Drivers/CMSIS/Include/core_cm7.h **** /**
|
328:Drivers/CMSIS/Include/core_cm7.h **** /**
|
||||||
ARM GAS /tmp/ccvevkMB.s page 10
|
ARM GAS /tmp/ccY34ikP.s page 10
|
||||||
|
|
||||||
|
|
||||||
329:Drivers/CMSIS/Include/core_cm7.h **** \brief Union type to access the Special-Purpose Program Status Registers (xPSR).
|
329:Drivers/CMSIS/Include/core_cm7.h **** \brief Union type to access the Special-Purpose Program Status Registers (xPSR).
|
||||||
@ -598,7 +598,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
383:Drivers/CMSIS/Include/core_cm7.h **** /**
|
383:Drivers/CMSIS/Include/core_cm7.h **** /**
|
||||||
384:Drivers/CMSIS/Include/core_cm7.h **** \brief Union type to access the Control Registers (CONTROL).
|
384:Drivers/CMSIS/Include/core_cm7.h **** \brief Union type to access the Control Registers (CONTROL).
|
||||||
385:Drivers/CMSIS/Include/core_cm7.h **** */
|
385:Drivers/CMSIS/Include/core_cm7.h **** */
|
||||||
ARM GAS /tmp/ccvevkMB.s page 11
|
ARM GAS /tmp/ccY34ikP.s page 11
|
||||||
|
|
||||||
|
|
||||||
386:Drivers/CMSIS/Include/core_cm7.h **** typedef union
|
386:Drivers/CMSIS/Include/core_cm7.h **** typedef union
|
||||||
@ -658,7 +658,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
440:Drivers/CMSIS/Include/core_cm7.h **** #define NVIC_STIR_INTID_Msk (0x1FFUL /*<< NVIC_STIR_INTID_Pos*/) /*!< STIR: I
|
440:Drivers/CMSIS/Include/core_cm7.h **** #define NVIC_STIR_INTID_Msk (0x1FFUL /*<< NVIC_STIR_INTID_Pos*/) /*!< STIR: I
|
||||||
441:Drivers/CMSIS/Include/core_cm7.h ****
|
441:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
442:Drivers/CMSIS/Include/core_cm7.h **** /*@} end of group CMSIS_NVIC */
|
442:Drivers/CMSIS/Include/core_cm7.h **** /*@} end of group CMSIS_NVIC */
|
||||||
ARM GAS /tmp/ccvevkMB.s page 12
|
ARM GAS /tmp/ccY34ikP.s page 12
|
||||||
|
|
||||||
|
|
||||||
443:Drivers/CMSIS/Include/core_cm7.h ****
|
443:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
@ -718,7 +718,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
497:Drivers/CMSIS/Include/core_cm7.h **** __OM uint32_t DCCIMVAC; /*!< Offset: 0x270 ( /W) D-Cache Clean and Invalidate by
|
497:Drivers/CMSIS/Include/core_cm7.h **** __OM uint32_t DCCIMVAC; /*!< Offset: 0x270 ( /W) D-Cache Clean and Invalidate by
|
||||||
498:Drivers/CMSIS/Include/core_cm7.h **** __OM uint32_t DCCISW; /*!< Offset: 0x274 ( /W) D-Cache Clean and Invalidate by
|
498:Drivers/CMSIS/Include/core_cm7.h **** __OM uint32_t DCCISW; /*!< Offset: 0x274 ( /W) D-Cache Clean and Invalidate by
|
||||||
499:Drivers/CMSIS/Include/core_cm7.h **** uint32_t RESERVED7[6U];
|
499:Drivers/CMSIS/Include/core_cm7.h **** uint32_t RESERVED7[6U];
|
||||||
ARM GAS /tmp/ccvevkMB.s page 13
|
ARM GAS /tmp/ccY34ikP.s page 13
|
||||||
|
|
||||||
|
|
||||||
500:Drivers/CMSIS/Include/core_cm7.h **** __IOM uint32_t ITCMCR; /*!< Offset: 0x290 (R/W) Instruction Tightly-Coupled Memo
|
500:Drivers/CMSIS/Include/core_cm7.h **** __IOM uint32_t ITCMCR; /*!< Offset: 0x290 (R/W) Instruction Tightly-Coupled Memo
|
||||||
@ -778,7 +778,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
554:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_ICSR_VECTACTIVE_Msk (0x1FFUL /*<< SCB_ICSR_VECTACTIVE_Pos*/) /*!< SCB
|
554:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_ICSR_VECTACTIVE_Msk (0x1FFUL /*<< SCB_ICSR_VECTACTIVE_Pos*/) /*!< SCB
|
||||||
555:Drivers/CMSIS/Include/core_cm7.h ****
|
555:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
556:Drivers/CMSIS/Include/core_cm7.h **** /* SCB Vector Table Offset Register Definitions */
|
556:Drivers/CMSIS/Include/core_cm7.h **** /* SCB Vector Table Offset Register Definitions */
|
||||||
ARM GAS /tmp/ccvevkMB.s page 14
|
ARM GAS /tmp/ccY34ikP.s page 14
|
||||||
|
|
||||||
|
|
||||||
557:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_VTOR_TBLOFF_Pos 7U /*!< SCB
|
557:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_VTOR_TBLOFF_Pos 7U /*!< SCB
|
||||||
@ -838,7 +838,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
611:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CCR_UNALIGN_TRP_Pos 3U /*!< SCB
|
611:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CCR_UNALIGN_TRP_Pos 3U /*!< SCB
|
||||||
612:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CCR_UNALIGN_TRP_Msk (1UL << SCB_CCR_UNALIGN_TRP_Pos) /*!< SCB
|
612:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CCR_UNALIGN_TRP_Msk (1UL << SCB_CCR_UNALIGN_TRP_Pos) /*!< SCB
|
||||||
613:Drivers/CMSIS/Include/core_cm7.h ****
|
613:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
ARM GAS /tmp/ccvevkMB.s page 15
|
ARM GAS /tmp/ccY34ikP.s page 15
|
||||||
|
|
||||||
|
|
||||||
614:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CCR_USERSETMPEND_Pos 1U /*!< SCB
|
614:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CCR_USERSETMPEND_Pos 1U /*!< SCB
|
||||||
@ -898,7 +898,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
668:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CFSR_BUSFAULTSR_Msk (0xFFUL << SCB_CFSR_BUSFAULTSR_Pos) /*!< SCB
|
668:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CFSR_BUSFAULTSR_Msk (0xFFUL << SCB_CFSR_BUSFAULTSR_Pos) /*!< SCB
|
||||||
669:Drivers/CMSIS/Include/core_cm7.h ****
|
669:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
670:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CFSR_MEMFAULTSR_Pos 0U /*!< SCB
|
670:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CFSR_MEMFAULTSR_Pos 0U /*!< SCB
|
||||||
ARM GAS /tmp/ccvevkMB.s page 16
|
ARM GAS /tmp/ccY34ikP.s page 16
|
||||||
|
|
||||||
|
|
||||||
671:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CFSR_MEMFAULTSR_Msk (0xFFUL /*<< SCB_CFSR_MEMFAULTSR_Pos*/) /*!< SCB
|
671:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CFSR_MEMFAULTSR_Msk (0xFFUL /*<< SCB_CFSR_MEMFAULTSR_Pos*/) /*!< SCB
|
||||||
@ -958,7 +958,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
725:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CFSR_INVPC_Msk (1UL << SCB_CFSR_INVPC_Pos) /*!< SCB
|
725:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CFSR_INVPC_Msk (1UL << SCB_CFSR_INVPC_Pos) /*!< SCB
|
||||||
726:Drivers/CMSIS/Include/core_cm7.h ****
|
726:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
727:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CFSR_INVSTATE_Pos (SCB_CFSR_USGFAULTSR_Pos + 1U) /*!< SCB
|
727:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CFSR_INVSTATE_Pos (SCB_CFSR_USGFAULTSR_Pos + 1U) /*!< SCB
|
||||||
ARM GAS /tmp/ccvevkMB.s page 17
|
ARM GAS /tmp/ccY34ikP.s page 17
|
||||||
|
|
||||||
|
|
||||||
728:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CFSR_INVSTATE_Msk (1UL << SCB_CFSR_INVSTATE_Pos) /*!< SCB
|
728:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CFSR_INVSTATE_Msk (1UL << SCB_CFSR_INVSTATE_Pos) /*!< SCB
|
||||||
@ -1018,7 +1018,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
782:Drivers/CMSIS/Include/core_cm7.h **** /* SCB Cache Size ID Register Definitions */
|
782:Drivers/CMSIS/Include/core_cm7.h **** /* SCB Cache Size ID Register Definitions */
|
||||||
783:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CCSIDR_WT_Pos 31U /*!< SCB
|
783:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CCSIDR_WT_Pos 31U /*!< SCB
|
||||||
784:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CCSIDR_WT_Msk (1UL << SCB_CCSIDR_WT_Pos) /*!< SCB
|
784:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_CCSIDR_WT_Msk (1UL << SCB_CCSIDR_WT_Pos) /*!< SCB
|
||||||
ARM GAS /tmp/ccvevkMB.s page 18
|
ARM GAS /tmp/ccY34ikP.s page 18
|
||||||
|
|
||||||
|
|
||||||
785:Drivers/CMSIS/Include/core_cm7.h ****
|
785:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
@ -1078,7 +1078,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
839:Drivers/CMSIS/Include/core_cm7.h ****
|
839:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
840:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_ITCMCR_RETEN_Pos 2U /*!< SCB
|
840:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_ITCMCR_RETEN_Pos 2U /*!< SCB
|
||||||
841:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_ITCMCR_RETEN_Msk (1UL << SCB_ITCMCR_RETEN_Pos) /*!< SCB
|
841:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_ITCMCR_RETEN_Msk (1UL << SCB_ITCMCR_RETEN_Pos) /*!< SCB
|
||||||
ARM GAS /tmp/ccvevkMB.s page 19
|
ARM GAS /tmp/ccY34ikP.s page 19
|
||||||
|
|
||||||
|
|
||||||
842:Drivers/CMSIS/Include/core_cm7.h ****
|
842:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
@ -1138,7 +1138,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
896:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_ABFSR_AXIM_Pos 3U /*!< SCB
|
896:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_ABFSR_AXIM_Pos 3U /*!< SCB
|
||||||
897:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_ABFSR_AXIM_Msk (1UL << SCB_ABFSR_AXIM_Pos) /*!< SCB
|
897:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_ABFSR_AXIM_Msk (1UL << SCB_ABFSR_AXIM_Pos) /*!< SCB
|
||||||
898:Drivers/CMSIS/Include/core_cm7.h ****
|
898:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
ARM GAS /tmp/ccvevkMB.s page 20
|
ARM GAS /tmp/ccY34ikP.s page 20
|
||||||
|
|
||||||
|
|
||||||
899:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_ABFSR_AHBP_Pos 2U /*!< SCB
|
899:Drivers/CMSIS/Include/core_cm7.h **** #define SCB_ABFSR_AHBP_Pos 2U /*!< SCB
|
||||||
@ -1198,7 +1198,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
953:Drivers/CMSIS/Include/core_cm7.h **** \defgroup CMSIS_SysTick System Tick Timer (SysTick)
|
953:Drivers/CMSIS/Include/core_cm7.h **** \defgroup CMSIS_SysTick System Tick Timer (SysTick)
|
||||||
954:Drivers/CMSIS/Include/core_cm7.h **** \brief Type definitions for the System Timer Registers.
|
954:Drivers/CMSIS/Include/core_cm7.h **** \brief Type definitions for the System Timer Registers.
|
||||||
955:Drivers/CMSIS/Include/core_cm7.h **** @{
|
955:Drivers/CMSIS/Include/core_cm7.h **** @{
|
||||||
ARM GAS /tmp/ccvevkMB.s page 21
|
ARM GAS /tmp/ccY34ikP.s page 21
|
||||||
|
|
||||||
|
|
||||||
956:Drivers/CMSIS/Include/core_cm7.h **** */
|
956:Drivers/CMSIS/Include/core_cm7.h **** */
|
||||||
@ -1258,7 +1258,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1010:Drivers/CMSIS/Include/core_cm7.h **** /**
|
1010:Drivers/CMSIS/Include/core_cm7.h **** /**
|
||||||
1011:Drivers/CMSIS/Include/core_cm7.h **** \brief Structure type to access the Instrumentation Trace Macrocell Register (ITM).
|
1011:Drivers/CMSIS/Include/core_cm7.h **** \brief Structure type to access the Instrumentation Trace Macrocell Register (ITM).
|
||||||
1012:Drivers/CMSIS/Include/core_cm7.h **** */
|
1012:Drivers/CMSIS/Include/core_cm7.h **** */
|
||||||
ARM GAS /tmp/ccvevkMB.s page 22
|
ARM GAS /tmp/ccY34ikP.s page 22
|
||||||
|
|
||||||
|
|
||||||
1013:Drivers/CMSIS/Include/core_cm7.h **** typedef struct
|
1013:Drivers/CMSIS/Include/core_cm7.h **** typedef struct
|
||||||
@ -1318,7 +1318,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1067:Drivers/CMSIS/Include/core_cm7.h **** #define ITM_TCR_SWOENA_Msk (1UL << ITM_TCR_SWOENA_Pos) /*!< ITM
|
1067:Drivers/CMSIS/Include/core_cm7.h **** #define ITM_TCR_SWOENA_Msk (1UL << ITM_TCR_SWOENA_Pos) /*!< ITM
|
||||||
1068:Drivers/CMSIS/Include/core_cm7.h ****
|
1068:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
1069:Drivers/CMSIS/Include/core_cm7.h **** #define ITM_TCR_DWTENA_Pos 3U /*!< ITM
|
1069:Drivers/CMSIS/Include/core_cm7.h **** #define ITM_TCR_DWTENA_Pos 3U /*!< ITM
|
||||||
ARM GAS /tmp/ccvevkMB.s page 23
|
ARM GAS /tmp/ccY34ikP.s page 23
|
||||||
|
|
||||||
|
|
||||||
1070:Drivers/CMSIS/Include/core_cm7.h **** #define ITM_TCR_DWTENA_Msk (1UL << ITM_TCR_DWTENA_Pos) /*!< ITM
|
1070:Drivers/CMSIS/Include/core_cm7.h **** #define ITM_TCR_DWTENA_Msk (1UL << ITM_TCR_DWTENA_Pos) /*!< ITM
|
||||||
@ -1378,7 +1378,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1124:Drivers/CMSIS/Include/core_cm7.h **** __IOM uint32_t FOLDCNT; /*!< Offset: 0x018 (R/W) Folded-instruction Count Registe
|
1124:Drivers/CMSIS/Include/core_cm7.h **** __IOM uint32_t FOLDCNT; /*!< Offset: 0x018 (R/W) Folded-instruction Count Registe
|
||||||
1125:Drivers/CMSIS/Include/core_cm7.h **** __IM uint32_t PCSR; /*!< Offset: 0x01C (R/ ) Program Counter Sample Register
|
1125:Drivers/CMSIS/Include/core_cm7.h **** __IM uint32_t PCSR; /*!< Offset: 0x01C (R/ ) Program Counter Sample Register
|
||||||
1126:Drivers/CMSIS/Include/core_cm7.h **** __IOM uint32_t COMP0; /*!< Offset: 0x020 (R/W) Comparator Register 0 */
|
1126:Drivers/CMSIS/Include/core_cm7.h **** __IOM uint32_t COMP0; /*!< Offset: 0x020 (R/W) Comparator Register 0 */
|
||||||
ARM GAS /tmp/ccvevkMB.s page 24
|
ARM GAS /tmp/ccY34ikP.s page 24
|
||||||
|
|
||||||
|
|
||||||
1127:Drivers/CMSIS/Include/core_cm7.h **** __IOM uint32_t MASK0; /*!< Offset: 0x024 (R/W) Mask Register 0 */
|
1127:Drivers/CMSIS/Include/core_cm7.h **** __IOM uint32_t MASK0; /*!< Offset: 0x024 (R/W) Mask Register 0 */
|
||||||
@ -1438,7 +1438,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1181:Drivers/CMSIS/Include/core_cm7.h **** #define DWT_CTRL_EXCTRCENA_Msk (0x1UL << DWT_CTRL_EXCTRCENA_Pos) /*!< DWT CTR
|
1181:Drivers/CMSIS/Include/core_cm7.h **** #define DWT_CTRL_EXCTRCENA_Msk (0x1UL << DWT_CTRL_EXCTRCENA_Pos) /*!< DWT CTR
|
||||||
1182:Drivers/CMSIS/Include/core_cm7.h ****
|
1182:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
1183:Drivers/CMSIS/Include/core_cm7.h **** #define DWT_CTRL_PCSAMPLENA_Pos 12U /*!< DWT CTR
|
1183:Drivers/CMSIS/Include/core_cm7.h **** #define DWT_CTRL_PCSAMPLENA_Pos 12U /*!< DWT CTR
|
||||||
ARM GAS /tmp/ccvevkMB.s page 25
|
ARM GAS /tmp/ccY34ikP.s page 25
|
||||||
|
|
||||||
|
|
||||||
1184:Drivers/CMSIS/Include/core_cm7.h **** #define DWT_CTRL_PCSAMPLENA_Msk (0x1UL << DWT_CTRL_PCSAMPLENA_Pos) /*!< DWT CTR
|
1184:Drivers/CMSIS/Include/core_cm7.h **** #define DWT_CTRL_PCSAMPLENA_Msk (0x1UL << DWT_CTRL_PCSAMPLENA_Pos) /*!< DWT CTR
|
||||||
@ -1498,7 +1498,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1238:Drivers/CMSIS/Include/core_cm7.h **** #define DWT_FUNCTION_LNK1ENA_Pos 9U /*!< DWT FUN
|
1238:Drivers/CMSIS/Include/core_cm7.h **** #define DWT_FUNCTION_LNK1ENA_Pos 9U /*!< DWT FUN
|
||||||
1239:Drivers/CMSIS/Include/core_cm7.h **** #define DWT_FUNCTION_LNK1ENA_Msk (0x1UL << DWT_FUNCTION_LNK1ENA_Pos) /*!< DWT FUN
|
1239:Drivers/CMSIS/Include/core_cm7.h **** #define DWT_FUNCTION_LNK1ENA_Msk (0x1UL << DWT_FUNCTION_LNK1ENA_Pos) /*!< DWT FUN
|
||||||
1240:Drivers/CMSIS/Include/core_cm7.h ****
|
1240:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
ARM GAS /tmp/ccvevkMB.s page 26
|
ARM GAS /tmp/ccY34ikP.s page 26
|
||||||
|
|
||||||
|
|
||||||
1241:Drivers/CMSIS/Include/core_cm7.h **** #define DWT_FUNCTION_DATAVMATCH_Pos 8U /*!< DWT FUN
|
1241:Drivers/CMSIS/Include/core_cm7.h **** #define DWT_FUNCTION_DATAVMATCH_Pos 8U /*!< DWT FUN
|
||||||
@ -1558,7 +1558,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1295:Drivers/CMSIS/Include/core_cm7.h **** #define TPI_ACPR_PRESCALER_Pos 0U /*!< TPI ACP
|
1295:Drivers/CMSIS/Include/core_cm7.h **** #define TPI_ACPR_PRESCALER_Pos 0U /*!< TPI ACP
|
||||||
1296:Drivers/CMSIS/Include/core_cm7.h **** #define TPI_ACPR_PRESCALER_Msk (0x1FFFUL /*<< TPI_ACPR_PRESCALER_Pos*/) /*!< TPI ACP
|
1296:Drivers/CMSIS/Include/core_cm7.h **** #define TPI_ACPR_PRESCALER_Msk (0x1FFFUL /*<< TPI_ACPR_PRESCALER_Pos*/) /*!< TPI ACP
|
||||||
1297:Drivers/CMSIS/Include/core_cm7.h ****
|
1297:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
ARM GAS /tmp/ccvevkMB.s page 27
|
ARM GAS /tmp/ccY34ikP.s page 27
|
||||||
|
|
||||||
|
|
||||||
1298:Drivers/CMSIS/Include/core_cm7.h **** /* TPI Selected Pin Protocol Register Definitions */
|
1298:Drivers/CMSIS/Include/core_cm7.h **** /* TPI Selected Pin Protocol Register Definitions */
|
||||||
@ -1618,7 +1618,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1352:Drivers/CMSIS/Include/core_cm7.h **** #define TPI_ITATBCTR2_ATREADY1_Pos 0U /*!< TPI ITA
|
1352:Drivers/CMSIS/Include/core_cm7.h **** #define TPI_ITATBCTR2_ATREADY1_Pos 0U /*!< TPI ITA
|
||||||
1353:Drivers/CMSIS/Include/core_cm7.h **** #define TPI_ITATBCTR2_ATREADY1_Msk (0x1UL /*<< TPI_ITATBCTR2_ATREADY1_Pos*/) /*!< TPI ITA
|
1353:Drivers/CMSIS/Include/core_cm7.h **** #define TPI_ITATBCTR2_ATREADY1_Msk (0x1UL /*<< TPI_ITATBCTR2_ATREADY1_Pos*/) /*!< TPI ITA
|
||||||
1354:Drivers/CMSIS/Include/core_cm7.h ****
|
1354:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
ARM GAS /tmp/ccvevkMB.s page 28
|
ARM GAS /tmp/ccY34ikP.s page 28
|
||||||
|
|
||||||
|
|
||||||
1355:Drivers/CMSIS/Include/core_cm7.h **** /* TPI Integration ITM Data Register Definitions (FIFO1) */
|
1355:Drivers/CMSIS/Include/core_cm7.h **** /* TPI Integration ITM Data Register Definitions (FIFO1) */
|
||||||
@ -1678,7 +1678,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1409:Drivers/CMSIS/Include/core_cm7.h **** #define TPI_DEVTYPE_SubType_Msk (0xFUL /*<< TPI_DEVTYPE_SubType_Pos*/) /*!< TPI DEV
|
1409:Drivers/CMSIS/Include/core_cm7.h **** #define TPI_DEVTYPE_SubType_Msk (0xFUL /*<< TPI_DEVTYPE_SubType_Pos*/) /*!< TPI DEV
|
||||||
1410:Drivers/CMSIS/Include/core_cm7.h ****
|
1410:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
1411:Drivers/CMSIS/Include/core_cm7.h **** #define TPI_DEVTYPE_MajorType_Pos 0U /*!< TPI DEV
|
1411:Drivers/CMSIS/Include/core_cm7.h **** #define TPI_DEVTYPE_MajorType_Pos 0U /*!< TPI DEV
|
||||||
ARM GAS /tmp/ccvevkMB.s page 29
|
ARM GAS /tmp/ccY34ikP.s page 29
|
||||||
|
|
||||||
|
|
||||||
1412:Drivers/CMSIS/Include/core_cm7.h **** #define TPI_DEVTYPE_MajorType_Msk (0xFUL << TPI_DEVTYPE_MajorType_Pos) /*!< TPI DEV
|
1412:Drivers/CMSIS/Include/core_cm7.h **** #define TPI_DEVTYPE_MajorType_Msk (0xFUL << TPI_DEVTYPE_MajorType_Pos) /*!< TPI DEV
|
||||||
@ -1738,7 +1738,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1466:Drivers/CMSIS/Include/core_cm7.h **** #define MPU_RNR_REGION_Pos 0U /*!< MPU
|
1466:Drivers/CMSIS/Include/core_cm7.h **** #define MPU_RNR_REGION_Pos 0U /*!< MPU
|
||||||
1467:Drivers/CMSIS/Include/core_cm7.h **** #define MPU_RNR_REGION_Msk (0xFFUL /*<< MPU_RNR_REGION_Pos*/) /*!< MPU
|
1467:Drivers/CMSIS/Include/core_cm7.h **** #define MPU_RNR_REGION_Msk (0xFFUL /*<< MPU_RNR_REGION_Pos*/) /*!< MPU
|
||||||
1468:Drivers/CMSIS/Include/core_cm7.h ****
|
1468:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
ARM GAS /tmp/ccvevkMB.s page 30
|
ARM GAS /tmp/ccY34ikP.s page 30
|
||||||
|
|
||||||
|
|
||||||
1469:Drivers/CMSIS/Include/core_cm7.h **** /* MPU Region Base Address Register Definitions */
|
1469:Drivers/CMSIS/Include/core_cm7.h **** /* MPU Region Base Address Register Definitions */
|
||||||
@ -1798,7 +1798,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1523:Drivers/CMSIS/Include/core_cm7.h **** */
|
1523:Drivers/CMSIS/Include/core_cm7.h **** */
|
||||||
1524:Drivers/CMSIS/Include/core_cm7.h **** typedef struct
|
1524:Drivers/CMSIS/Include/core_cm7.h **** typedef struct
|
||||||
1525:Drivers/CMSIS/Include/core_cm7.h **** {
|
1525:Drivers/CMSIS/Include/core_cm7.h **** {
|
||||||
ARM GAS /tmp/ccvevkMB.s page 31
|
ARM GAS /tmp/ccY34ikP.s page 31
|
||||||
|
|
||||||
|
|
||||||
1526:Drivers/CMSIS/Include/core_cm7.h **** uint32_t RESERVED0[1U];
|
1526:Drivers/CMSIS/Include/core_cm7.h **** uint32_t RESERVED0[1U];
|
||||||
@ -1858,7 +1858,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1580:Drivers/CMSIS/Include/core_cm7.h **** /* Media and FP Feature Register 0 Definitions */
|
1580:Drivers/CMSIS/Include/core_cm7.h **** /* Media and FP Feature Register 0 Definitions */
|
||||||
1581:Drivers/CMSIS/Include/core_cm7.h **** #define FPU_MVFR0_FP_rounding_modes_Pos 28U /*!< MVFR
|
1581:Drivers/CMSIS/Include/core_cm7.h **** #define FPU_MVFR0_FP_rounding_modes_Pos 28U /*!< MVFR
|
||||||
1582:Drivers/CMSIS/Include/core_cm7.h **** #define FPU_MVFR0_FP_rounding_modes_Msk (0xFUL << FPU_MVFR0_FP_rounding_modes_Pos) /*!< MVFR
|
1582:Drivers/CMSIS/Include/core_cm7.h **** #define FPU_MVFR0_FP_rounding_modes_Msk (0xFUL << FPU_MVFR0_FP_rounding_modes_Pos) /*!< MVFR
|
||||||
ARM GAS /tmp/ccvevkMB.s page 32
|
ARM GAS /tmp/ccY34ikP.s page 32
|
||||||
|
|
||||||
|
|
||||||
1583:Drivers/CMSIS/Include/core_cm7.h ****
|
1583:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
@ -1918,7 +1918,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1637:Drivers/CMSIS/Include/core_cm7.h **** __IOM uint32_t DCRDR; /*!< Offset: 0x008 (R/W) Debug Core Register Data Registe
|
1637:Drivers/CMSIS/Include/core_cm7.h **** __IOM uint32_t DCRDR; /*!< Offset: 0x008 (R/W) Debug Core Register Data Registe
|
||||||
1638:Drivers/CMSIS/Include/core_cm7.h **** __IOM uint32_t DEMCR; /*!< Offset: 0x00C (R/W) Debug Exception and Monitor Cont
|
1638:Drivers/CMSIS/Include/core_cm7.h **** __IOM uint32_t DEMCR; /*!< Offset: 0x00C (R/W) Debug Exception and Monitor Cont
|
||||||
1639:Drivers/CMSIS/Include/core_cm7.h **** } CoreDebug_Type;
|
1639:Drivers/CMSIS/Include/core_cm7.h **** } CoreDebug_Type;
|
||||||
ARM GAS /tmp/ccvevkMB.s page 33
|
ARM GAS /tmp/ccY34ikP.s page 33
|
||||||
|
|
||||||
|
|
||||||
1640:Drivers/CMSIS/Include/core_cm7.h ****
|
1640:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
@ -1978,7 +1978,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1694:Drivers/CMSIS/Include/core_cm7.h ****
|
1694:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
1695:Drivers/CMSIS/Include/core_cm7.h **** #define CoreDebug_DEMCR_MON_PEND_Pos 17U /*!< Core
|
1695:Drivers/CMSIS/Include/core_cm7.h **** #define CoreDebug_DEMCR_MON_PEND_Pos 17U /*!< Core
|
||||||
1696:Drivers/CMSIS/Include/core_cm7.h **** #define CoreDebug_DEMCR_MON_PEND_Msk (1UL << CoreDebug_DEMCR_MON_PEND_Pos) /*!< Core
|
1696:Drivers/CMSIS/Include/core_cm7.h **** #define CoreDebug_DEMCR_MON_PEND_Msk (1UL << CoreDebug_DEMCR_MON_PEND_Pos) /*!< Core
|
||||||
ARM GAS /tmp/ccvevkMB.s page 34
|
ARM GAS /tmp/ccY34ikP.s page 34
|
||||||
|
|
||||||
|
|
||||||
1697:Drivers/CMSIS/Include/core_cm7.h ****
|
1697:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
@ -2038,7 +2038,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1751:Drivers/CMSIS/Include/core_cm7.h **** /*@} end of group CMSIS_core_bitfield */
|
1751:Drivers/CMSIS/Include/core_cm7.h **** /*@} end of group CMSIS_core_bitfield */
|
||||||
1752:Drivers/CMSIS/Include/core_cm7.h ****
|
1752:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
1753:Drivers/CMSIS/Include/core_cm7.h ****
|
1753:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
ARM GAS /tmp/ccvevkMB.s page 35
|
ARM GAS /tmp/ccY34ikP.s page 35
|
||||||
|
|
||||||
|
|
||||||
1754:Drivers/CMSIS/Include/core_cm7.h **** /**
|
1754:Drivers/CMSIS/Include/core_cm7.h **** /**
|
||||||
@ -2098,7 +2098,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1808:Drivers/CMSIS/Include/core_cm7.h **** \ingroup CMSIS_Core_FunctionInterface
|
1808:Drivers/CMSIS/Include/core_cm7.h **** \ingroup CMSIS_Core_FunctionInterface
|
||||||
1809:Drivers/CMSIS/Include/core_cm7.h **** \defgroup CMSIS_Core_NVICFunctions NVIC Functions
|
1809:Drivers/CMSIS/Include/core_cm7.h **** \defgroup CMSIS_Core_NVICFunctions NVIC Functions
|
||||||
1810:Drivers/CMSIS/Include/core_cm7.h **** \brief Functions that manage interrupts and exceptions via the NVIC.
|
1810:Drivers/CMSIS/Include/core_cm7.h **** \brief Functions that manage interrupts and exceptions via the NVIC.
|
||||||
ARM GAS /tmp/ccvevkMB.s page 36
|
ARM GAS /tmp/ccY34ikP.s page 36
|
||||||
|
|
||||||
|
|
||||||
1811:Drivers/CMSIS/Include/core_cm7.h **** @{
|
1811:Drivers/CMSIS/Include/core_cm7.h **** @{
|
||||||
@ -2158,7 +2158,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1865:Drivers/CMSIS/Include/core_cm7.h **** __STATIC_INLINE void __NVIC_SetPriorityGrouping(uint32_t PriorityGroup)
|
1865:Drivers/CMSIS/Include/core_cm7.h **** __STATIC_INLINE void __NVIC_SetPriorityGrouping(uint32_t PriorityGroup)
|
||||||
39 .loc 2 1865 22 view .LVU3
|
39 .loc 2 1865 22 view .LVU3
|
||||||
40 .LBB39:
|
40 .LBB39:
|
||||||
ARM GAS /tmp/ccvevkMB.s page 37
|
ARM GAS /tmp/ccY34ikP.s page 37
|
||||||
|
|
||||||
|
|
||||||
1866:Drivers/CMSIS/Include/core_cm7.h **** {
|
1866:Drivers/CMSIS/Include/core_cm7.h **** {
|
||||||
@ -2218,7 +2218,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
82 0020 0000FA05 .word 100270080
|
82 0020 0000FA05 .word 100270080
|
||||||
83 .cfi_endproc
|
83 .cfi_endproc
|
||||||
84 .LFE141:
|
84 .LFE141:
|
||||||
ARM GAS /tmp/ccvevkMB.s page 38
|
ARM GAS /tmp/ccY34ikP.s page 38
|
||||||
|
|
||||||
|
|
||||||
86 .section .text.HAL_NVIC_SetPriority,"ax",%progbits
|
86 .section .text.HAL_NVIC_SetPriority,"ax",%progbits
|
||||||
@ -2278,7 +2278,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1881:Drivers/CMSIS/Include/core_cm7.h **** \details Reads the priority grouping field from the NVIC Interrupt Controller.
|
1881:Drivers/CMSIS/Include/core_cm7.h **** \details Reads the priority grouping field from the NVIC Interrupt Controller.
|
||||||
1882:Drivers/CMSIS/Include/core_cm7.h **** \return Priority grouping field (SCB->AIRCR [10:8] PRIGROUP field).
|
1882:Drivers/CMSIS/Include/core_cm7.h **** \return Priority grouping field (SCB->AIRCR [10:8] PRIGROUP field).
|
||||||
1883:Drivers/CMSIS/Include/core_cm7.h **** */
|
1883:Drivers/CMSIS/Include/core_cm7.h **** */
|
||||||
ARM GAS /tmp/ccvevkMB.s page 39
|
ARM GAS /tmp/ccY34ikP.s page 39
|
||||||
|
|
||||||
|
|
||||||
1884:Drivers/CMSIS/Include/core_cm7.h **** __STATIC_INLINE uint32_t __NVIC_GetPriorityGrouping(void)
|
1884:Drivers/CMSIS/Include/core_cm7.h **** __STATIC_INLINE uint32_t __NVIC_GetPriorityGrouping(void)
|
||||||
@ -2338,7 +2338,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1921:Drivers/CMSIS/Include/core_cm7.h **** return(0U);
|
1921:Drivers/CMSIS/Include/core_cm7.h **** return(0U);
|
||||||
1922:Drivers/CMSIS/Include/core_cm7.h **** }
|
1922:Drivers/CMSIS/Include/core_cm7.h **** }
|
||||||
1923:Drivers/CMSIS/Include/core_cm7.h **** }
|
1923:Drivers/CMSIS/Include/core_cm7.h **** }
|
||||||
ARM GAS /tmp/ccvevkMB.s page 40
|
ARM GAS /tmp/ccY34ikP.s page 40
|
||||||
|
|
||||||
|
|
||||||
1924:Drivers/CMSIS/Include/core_cm7.h ****
|
1924:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
@ -2398,7 +2398,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1978:Drivers/CMSIS/Include/core_cm7.h ****
|
1978:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
1979:Drivers/CMSIS/Include/core_cm7.h **** /**
|
1979:Drivers/CMSIS/Include/core_cm7.h **** /**
|
||||||
1980:Drivers/CMSIS/Include/core_cm7.h **** \brief Clear Pending Interrupt
|
1980:Drivers/CMSIS/Include/core_cm7.h **** \brief Clear Pending Interrupt
|
||||||
ARM GAS /tmp/ccvevkMB.s page 41
|
ARM GAS /tmp/ccY34ikP.s page 41
|
||||||
|
|
||||||
|
|
||||||
1981:Drivers/CMSIS/Include/core_cm7.h **** \details Clears the pending bit of a device specific interrupt in the NVIC pending register.
|
1981:Drivers/CMSIS/Include/core_cm7.h **** \details Clears the pending bit of a device specific interrupt in the NVIC pending register.
|
||||||
@ -2458,7 +2458,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
2035:Drivers/CMSIS/Include/core_cm7.h ****
|
2035:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
2036:Drivers/CMSIS/Include/core_cm7.h ****
|
2036:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
2037:Drivers/CMSIS/Include/core_cm7.h **** /**
|
2037:Drivers/CMSIS/Include/core_cm7.h **** /**
|
||||||
ARM GAS /tmp/ccvevkMB.s page 42
|
ARM GAS /tmp/ccY34ikP.s page 42
|
||||||
|
|
||||||
|
|
||||||
2038:Drivers/CMSIS/Include/core_cm7.h **** \brief Get Interrupt Priority
|
2038:Drivers/CMSIS/Include/core_cm7.h **** \brief Get Interrupt Priority
|
||||||
@ -2518,7 +2518,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
141 .loc 2 2078 3 is_stmt 1 view .LVU39
|
141 .loc 2 2078 3 is_stmt 1 view .LVU39
|
||||||
142 .loc 2 2078 44 is_stmt 0 view .LVU40
|
142 .loc 2 2078 44 is_stmt 0 view .LVU40
|
||||||
143 0018 03F1040E add lr, r3, #4
|
143 0018 03F1040E add lr, r3, #4
|
||||||
ARM GAS /tmp/ccvevkMB.s page 43
|
ARM GAS /tmp/ccY34ikP.s page 43
|
||||||
|
|
||||||
|
|
||||||
144 .loc 2 2078 109 view .LVU41
|
144 .loc 2 2078 109 view .LVU41
|
||||||
@ -2578,7 +2578,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
186 0042 C9B2 uxtb r1, r1
|
186 0042 C9B2 uxtb r1, r1
|
||||||
2028:Drivers/CMSIS/Include/core_cm7.h **** }
|
2028:Drivers/CMSIS/Include/core_cm7.h **** }
|
||||||
187 .loc 2 2028 47 view .LVU57
|
187 .loc 2 2028 47 view .LVU57
|
||||||
ARM GAS /tmp/ccvevkMB.s page 44
|
ARM GAS /tmp/ccY34ikP.s page 44
|
||||||
|
|
||||||
|
|
||||||
188 0044 074B ldr r3, .L10+4
|
188 0044 074B ldr r3, .L10+4
|
||||||
@ -2638,7 +2638,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
231 .L11:
|
231 .L11:
|
||||||
232 005e 00BF .align 2
|
232 005e 00BF .align 2
|
||||||
233 .L10:
|
233 .L10:
|
||||||
ARM GAS /tmp/ccvevkMB.s page 45
|
ARM GAS /tmp/ccY34ikP.s page 45
|
||||||
|
|
||||||
|
|
||||||
234 0060 00ED00E0 .word -536810240
|
234 0060 00ED00E0 .word -536810240
|
||||||
@ -2698,7 +2698,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
268 .loc 2 1900 5 is_stmt 1 view .LVU77
|
268 .loc 2 1900 5 is_stmt 1 view .LVU77
|
||||||
1900:Drivers/CMSIS/Include/core_cm7.h **** }
|
1900:Drivers/CMSIS/Include/core_cm7.h **** }
|
||||||
269 .loc 2 1900 81 is_stmt 0 view .LVU78
|
269 .loc 2 1900 81 is_stmt 0 view .LVU78
|
||||||
ARM GAS /tmp/ccvevkMB.s page 46
|
ARM GAS /tmp/ccY34ikP.s page 46
|
||||||
|
|
||||||
|
|
||||||
270 0004 00F01F02 and r2, r0, #31
|
270 0004 00F01F02 and r2, r0, #31
|
||||||
@ -2758,7 +2758,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
309 .loc 1 205 3 view .LVU85
|
309 .loc 1 205 3 view .LVU85
|
||||||
206:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c ****
|
206:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c ****
|
||||||
207:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** /* Disable interrupt */
|
207:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** /* Disable interrupt */
|
||||||
ARM GAS /tmp/ccvevkMB.s page 47
|
ARM GAS /tmp/ccY34ikP.s page 47
|
||||||
|
|
||||||
|
|
||||||
208:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** NVIC_DisableIRQ(IRQn);
|
208:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** NVIC_DisableIRQ(IRQn);
|
||||||
@ -2818,7 +2818,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
17:Drivers/CMSIS/Include/cmsis_gcc.h **** *
|
17:Drivers/CMSIS/Include/cmsis_gcc.h **** *
|
||||||
18:Drivers/CMSIS/Include/cmsis_gcc.h **** * Unless required by applicable law or agreed to in writing, software
|
18:Drivers/CMSIS/Include/cmsis_gcc.h **** * Unless required by applicable law or agreed to in writing, software
|
||||||
19:Drivers/CMSIS/Include/cmsis_gcc.h **** * distributed under the License is distributed on an AS IS BASIS, WITHOUT
|
19:Drivers/CMSIS/Include/cmsis_gcc.h **** * distributed under the License is distributed on an AS IS BASIS, WITHOUT
|
||||||
ARM GAS /tmp/ccvevkMB.s page 48
|
ARM GAS /tmp/ccY34ikP.s page 48
|
||||||
|
|
||||||
|
|
||||||
20:Drivers/CMSIS/Include/cmsis_gcc.h **** * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
20:Drivers/CMSIS/Include/cmsis_gcc.h **** * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
@ -2878,7 +2878,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
74:Drivers/CMSIS/Include/cmsis_gcc.h **** struct __attribute__((packed)) T_UINT32 { uint32_t v; };
|
74:Drivers/CMSIS/Include/cmsis_gcc.h **** struct __attribute__((packed)) T_UINT32 { uint32_t v; };
|
||||||
75:Drivers/CMSIS/Include/cmsis_gcc.h **** #pragma GCC diagnostic pop
|
75:Drivers/CMSIS/Include/cmsis_gcc.h **** #pragma GCC diagnostic pop
|
||||||
76:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __UNALIGNED_UINT32(x) (((struct T_UINT32 *)(x))->v)
|
76:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __UNALIGNED_UINT32(x) (((struct T_UINT32 *)(x))->v)
|
||||||
ARM GAS /tmp/ccvevkMB.s page 49
|
ARM GAS /tmp/ccY34ikP.s page 49
|
||||||
|
|
||||||
|
|
||||||
77:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
77:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
||||||
@ -2938,7 +2938,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
131:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("cpsie i" : : : "memory");
|
131:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("cpsie i" : : : "memory");
|
||||||
132:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
132:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
||||||
133:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
133:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
ARM GAS /tmp/ccvevkMB.s page 50
|
ARM GAS /tmp/ccY34ikP.s page 50
|
||||||
|
|
||||||
|
|
||||||
134:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
134:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
@ -2998,7 +2998,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
188:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
188:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
||||||
189:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Set Control Register (non-secure)
|
189:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Set Control Register (non-secure)
|
||||||
190:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Writes the given value to the non-secure Control Register when in secure state.
|
190:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Writes the given value to the non-secure Control Register when in secure state.
|
||||||
ARM GAS /tmp/ccvevkMB.s page 51
|
ARM GAS /tmp/ccY34ikP.s page 51
|
||||||
|
|
||||||
|
|
||||||
191:Drivers/CMSIS/Include/cmsis_gcc.h **** \param [in] control Control Register value to set
|
191:Drivers/CMSIS/Include/cmsis_gcc.h **** \param [in] control Control Register value to set
|
||||||
@ -3058,7 +3058,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
245:Drivers/CMSIS/Include/cmsis_gcc.h **** \return PSP Register value
|
245:Drivers/CMSIS/Include/cmsis_gcc.h **** \return PSP Register value
|
||||||
246:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
246:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
247:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __get_PSP(void)
|
247:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __get_PSP(void)
|
||||||
ARM GAS /tmp/ccvevkMB.s page 52
|
ARM GAS /tmp/ccY34ikP.s page 52
|
||||||
|
|
||||||
|
|
||||||
248:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
248:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
@ -3118,7 +3118,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
302:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
302:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
303:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
303:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
||||||
304:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
304:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
ARM GAS /tmp/ccvevkMB.s page 53
|
ARM GAS /tmp/ccY34ikP.s page 53
|
||||||
|
|
||||||
|
|
||||||
305:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, msp" : "=r" (result) );
|
305:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, msp" : "=r" (result) );
|
||||||
@ -3178,7 +3178,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
359:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
359:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
360:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, sp_ns" : "=r" (result) );
|
360:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, sp_ns" : "=r" (result) );
|
||||||
361:Drivers/CMSIS/Include/cmsis_gcc.h **** return(result);
|
361:Drivers/CMSIS/Include/cmsis_gcc.h **** return(result);
|
||||||
ARM GAS /tmp/ccvevkMB.s page 54
|
ARM GAS /tmp/ccY34ikP.s page 54
|
||||||
|
|
||||||
|
|
||||||
362:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
362:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
||||||
@ -3238,7 +3238,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
416:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
416:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
417:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
417:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
418:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (defined (__ARM_FEATURE_CMSE ) && (__ARM_FEATURE_CMSE == 3))
|
418:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (defined (__ARM_FEATURE_CMSE ) && (__ARM_FEATURE_CMSE == 3))
|
||||||
ARM GAS /tmp/ccvevkMB.s page 55
|
ARM GAS /tmp/ccY34ikP.s page 55
|
||||||
|
|
||||||
|
|
||||||
419:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
419:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
||||||
@ -3298,7 +3298,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
473:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the current value of the non-secure Base Priority register when in secure state.
|
473:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the current value of the non-secure Base Priority register when in secure state.
|
||||||
474:Drivers/CMSIS/Include/cmsis_gcc.h **** \return Base Priority register value
|
474:Drivers/CMSIS/Include/cmsis_gcc.h **** \return Base Priority register value
|
||||||
475:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
475:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
ARM GAS /tmp/ccvevkMB.s page 56
|
ARM GAS /tmp/ccY34ikP.s page 56
|
||||||
|
|
||||||
|
|
||||||
476:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __TZ_get_BASEPRI_NS(void)
|
476:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __TZ_get_BASEPRI_NS(void)
|
||||||
@ -3358,7 +3358,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
530:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
530:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
531:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, faultmask" : "=r" (result) );
|
531:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, faultmask" : "=r" (result) );
|
||||||
532:Drivers/CMSIS/Include/cmsis_gcc.h **** return(result);
|
532:Drivers/CMSIS/Include/cmsis_gcc.h **** return(result);
|
||||||
ARM GAS /tmp/ccvevkMB.s page 57
|
ARM GAS /tmp/ccY34ikP.s page 57
|
||||||
|
|
||||||
|
|
||||||
533:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
533:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
||||||
@ -3418,7 +3418,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
587:Drivers/CMSIS/Include/cmsis_gcc.h **** mode.
|
587:Drivers/CMSIS/Include/cmsis_gcc.h **** mode.
|
||||||
588:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
588:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
589:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the current value of the Process Stack Pointer Limit (PSPLIM).
|
589:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the current value of the Process Stack Pointer Limit (PSPLIM).
|
||||||
ARM GAS /tmp/ccvevkMB.s page 58
|
ARM GAS /tmp/ccY34ikP.s page 58
|
||||||
|
|
||||||
|
|
||||||
590:Drivers/CMSIS/Include/cmsis_gcc.h **** \return PSPLIM Register value
|
590:Drivers/CMSIS/Include/cmsis_gcc.h **** \return PSPLIM Register value
|
||||||
@ -3478,7 +3478,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
644:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MSR psplim, %0" : : "r" (ProcStackPtrLimit));
|
644:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MSR psplim, %0" : : "r" (ProcStackPtrLimit));
|
||||||
645:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
645:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
||||||
646:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
646:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
||||||
ARM GAS /tmp/ccvevkMB.s page 59
|
ARM GAS /tmp/ccY34ikP.s page 59
|
||||||
|
|
||||||
|
|
||||||
647:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
647:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
@ -3538,7 +3538,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
701:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
701:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
702:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __TZ_get_MSPLIM_NS(void)
|
702:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __TZ_get_MSPLIM_NS(void)
|
||||||
703:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
703:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
ARM GAS /tmp/ccvevkMB.s page 60
|
ARM GAS /tmp/ccY34ikP.s page 60
|
||||||
|
|
||||||
|
|
||||||
704:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (!(defined (__ARM_ARCH_8M_MAIN__ ) && (__ARM_ARCH_8M_MAIN__ == 1)))
|
704:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (!(defined (__ARM_ARCH_8M_MAIN__ ) && (__ARM_ARCH_8M_MAIN__ == 1)))
|
||||||
@ -3598,7 +3598,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
758:Drivers/CMSIS/Include/cmsis_gcc.h **** (defined (__ARM_ARCH_8M_BASE__ ) && (__ARM_ARCH_8M_BASE__ == 1)) ) */
|
758:Drivers/CMSIS/Include/cmsis_gcc.h **** (defined (__ARM_ARCH_8M_BASE__ ) && (__ARM_ARCH_8M_BASE__ == 1)) ) */
|
||||||
759:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
759:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
760:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
760:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
ARM GAS /tmp/ccvevkMB.s page 61
|
ARM GAS /tmp/ccY34ikP.s page 61
|
||||||
|
|
||||||
|
|
||||||
761:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
761:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
||||||
@ -3658,7 +3658,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
815:Drivers/CMSIS/Include/cmsis_gcc.h **** Access to dedicated instructions
|
815:Drivers/CMSIS/Include/cmsis_gcc.h **** Access to dedicated instructions
|
||||||
816:Drivers/CMSIS/Include/cmsis_gcc.h **** @{
|
816:Drivers/CMSIS/Include/cmsis_gcc.h **** @{
|
||||||
817:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
817:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
ARM GAS /tmp/ccvevkMB.s page 62
|
ARM GAS /tmp/ccY34ikP.s page 62
|
||||||
|
|
||||||
|
|
||||||
818:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
818:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
@ -3718,7 +3718,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
872:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
872:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
||||||
873:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Data Synchronization Barrier
|
873:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Data Synchronization Barrier
|
||||||
874:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Acts as a special kind of Data Memory Barrier.
|
874:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Acts as a special kind of Data Memory Barrier.
|
||||||
ARM GAS /tmp/ccvevkMB.s page 63
|
ARM GAS /tmp/ccY34ikP.s page 63
|
||||||
|
|
||||||
|
|
||||||
875:Drivers/CMSIS/Include/cmsis_gcc.h **** It completes when all explicit memory accesses before this instruction complete.
|
875:Drivers/CMSIS/Include/cmsis_gcc.h **** It completes when all explicit memory accesses before this instruction complete.
|
||||||
@ -3778,7 +3778,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
382 .fpu fpv5-d16
|
382 .fpu fpv5-d16
|
||||||
384 HAL_NVIC_SystemReset:
|
384 HAL_NVIC_SystemReset:
|
||||||
385 .LFB145:
|
385 .LFB145:
|
||||||
ARM GAS /tmp/ccvevkMB.s page 64
|
ARM GAS /tmp/ccY34ikP.s page 64
|
||||||
|
|
||||||
|
|
||||||
210:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c ****
|
210:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c ****
|
||||||
@ -3838,7 +3838,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
2119:Drivers/CMSIS/Include/core_cm7.h **** \param [in] vector Address of interrupt handler function
|
2119:Drivers/CMSIS/Include/core_cm7.h **** \param [in] vector Address of interrupt handler function
|
||||||
2120:Drivers/CMSIS/Include/core_cm7.h **** */
|
2120:Drivers/CMSIS/Include/core_cm7.h **** */
|
||||||
2121:Drivers/CMSIS/Include/core_cm7.h **** __STATIC_INLINE void __NVIC_SetVector(IRQn_Type IRQn, uint32_t vector)
|
2121:Drivers/CMSIS/Include/core_cm7.h **** __STATIC_INLINE void __NVIC_SetVector(IRQn_Type IRQn, uint32_t vector)
|
||||||
ARM GAS /tmp/ccvevkMB.s page 65
|
ARM GAS /tmp/ccY34ikP.s page 65
|
||||||
|
|
||||||
|
|
||||||
2122:Drivers/CMSIS/Include/core_cm7.h **** {
|
2122:Drivers/CMSIS/Include/core_cm7.h **** {
|
||||||
@ -3898,7 +3898,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
2151:Drivers/CMSIS/Include/core_cm7.h **** (SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) |
|
2151:Drivers/CMSIS/Include/core_cm7.h **** (SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) |
|
||||||
417 .loc 2 2151 17 view .LVU113
|
417 .loc 2 2151 17 view .LVU113
|
||||||
418 000c 044B ldr r3, .L22+4
|
418 000c 044B ldr r3, .L22+4
|
||||||
ARM GAS /tmp/ccvevkMB.s page 66
|
ARM GAS /tmp/ccY34ikP.s page 66
|
||||||
|
|
||||||
|
|
||||||
419 000e 1343 orrs r3, r3, r2
|
419 000e 1343 orrs r3, r3, r2
|
||||||
@ -3958,7 +3958,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
466 .LVL32:
|
466 .LVL32:
|
||||||
467 .LFB146:
|
467 .LFB146:
|
||||||
219:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** }
|
219:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** }
|
||||||
ARM GAS /tmp/ccvevkMB.s page 67
|
ARM GAS /tmp/ccY34ikP.s page 67
|
||||||
|
|
||||||
|
|
||||||
220:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c ****
|
220:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c ****
|
||||||
@ -4018,7 +4018,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
2194:Drivers/CMSIS/Include/core_cm7.h **** {
|
2194:Drivers/CMSIS/Include/core_cm7.h **** {
|
||||||
2195:Drivers/CMSIS/Include/core_cm7.h **** return 2U; /* Double + Single precision FPU */
|
2195:Drivers/CMSIS/Include/core_cm7.h **** return 2U; /* Double + Single precision FPU */
|
||||||
2196:Drivers/CMSIS/Include/core_cm7.h **** }
|
2196:Drivers/CMSIS/Include/core_cm7.h **** }
|
||||||
ARM GAS /tmp/ccvevkMB.s page 68
|
ARM GAS /tmp/ccY34ikP.s page 68
|
||||||
|
|
||||||
|
|
||||||
2197:Drivers/CMSIS/Include/core_cm7.h **** else if ((mvfr0 & (FPU_MVFR0_Single_precision_Msk | FPU_MVFR0_Double_precision_Msk)) == 0x020U)
|
2197:Drivers/CMSIS/Include/core_cm7.h **** else if ((mvfr0 & (FPU_MVFR0_Single_precision_Msk | FPU_MVFR0_Double_precision_Msk)) == 0x020U)
|
||||||
@ -4078,7 +4078,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
2251:Drivers/CMSIS/Include/core_cm7.h **** __DSB();
|
2251:Drivers/CMSIS/Include/core_cm7.h **** __DSB();
|
||||||
2252:Drivers/CMSIS/Include/core_cm7.h **** __ISB();
|
2252:Drivers/CMSIS/Include/core_cm7.h **** __ISB();
|
||||||
2253:Drivers/CMSIS/Include/core_cm7.h **** SCB->CCR &= ~(uint32_t)SCB_CCR_IC_Msk; /* disable I-Cache */
|
2253:Drivers/CMSIS/Include/core_cm7.h **** SCB->CCR &= ~(uint32_t)SCB_CCR_IC_Msk; /* disable I-Cache */
|
||||||
ARM GAS /tmp/ccvevkMB.s page 69
|
ARM GAS /tmp/ccY34ikP.s page 69
|
||||||
|
|
||||||
|
|
||||||
2254:Drivers/CMSIS/Include/core_cm7.h **** SCB->ICIALLU = 0UL; /* invalidate I-Cache */
|
2254:Drivers/CMSIS/Include/core_cm7.h **** SCB->ICIALLU = 0UL; /* invalidate I-Cache */
|
||||||
@ -4138,7 +4138,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
2308:Drivers/CMSIS/Include/core_cm7.h ****
|
2308:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
2309:Drivers/CMSIS/Include/core_cm7.h **** __DSB();
|
2309:Drivers/CMSIS/Include/core_cm7.h **** __DSB();
|
||||||
2310:Drivers/CMSIS/Include/core_cm7.h **** __ISB();
|
2310:Drivers/CMSIS/Include/core_cm7.h **** __ISB();
|
||||||
ARM GAS /tmp/ccvevkMB.s page 70
|
ARM GAS /tmp/ccY34ikP.s page 70
|
||||||
|
|
||||||
|
|
||||||
2311:Drivers/CMSIS/Include/core_cm7.h **** #endif
|
2311:Drivers/CMSIS/Include/core_cm7.h **** #endif
|
||||||
@ -4198,7 +4198,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
2365:Drivers/CMSIS/Include/core_cm7.h **** __DSB();
|
2365:Drivers/CMSIS/Include/core_cm7.h **** __DSB();
|
||||||
2366:Drivers/CMSIS/Include/core_cm7.h ****
|
2366:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
2367:Drivers/CMSIS/Include/core_cm7.h **** ccsidr = SCB->CCSIDR;
|
2367:Drivers/CMSIS/Include/core_cm7.h **** ccsidr = SCB->CCSIDR;
|
||||||
ARM GAS /tmp/ccvevkMB.s page 71
|
ARM GAS /tmp/ccY34ikP.s page 71
|
||||||
|
|
||||||
|
|
||||||
2368:Drivers/CMSIS/Include/core_cm7.h ****
|
2368:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
@ -4258,7 +4258,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
2422:Drivers/CMSIS/Include/core_cm7.h ****
|
2422:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
2423:Drivers/CMSIS/Include/core_cm7.h **** /**
|
2423:Drivers/CMSIS/Include/core_cm7.h **** /**
|
||||||
2424:Drivers/CMSIS/Include/core_cm7.h **** \brief Clean & Invalidate D-Cache
|
2424:Drivers/CMSIS/Include/core_cm7.h **** \brief Clean & Invalidate D-Cache
|
||||||
ARM GAS /tmp/ccvevkMB.s page 72
|
ARM GAS /tmp/ccY34ikP.s page 72
|
||||||
|
|
||||||
|
|
||||||
2425:Drivers/CMSIS/Include/core_cm7.h **** \details Cleans and Invalidates D-Cache
|
2425:Drivers/CMSIS/Include/core_cm7.h **** \details Cleans and Invalidates D-Cache
|
||||||
@ -4318,7 +4318,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
2479:Drivers/CMSIS/Include/core_cm7.h **** __DSB();
|
2479:Drivers/CMSIS/Include/core_cm7.h **** __DSB();
|
||||||
2480:Drivers/CMSIS/Include/core_cm7.h **** __ISB();
|
2480:Drivers/CMSIS/Include/core_cm7.h **** __ISB();
|
||||||
2481:Drivers/CMSIS/Include/core_cm7.h **** #endif
|
2481:Drivers/CMSIS/Include/core_cm7.h **** #endif
|
||||||
ARM GAS /tmp/ccvevkMB.s page 73
|
ARM GAS /tmp/ccY34ikP.s page 73
|
||||||
|
|
||||||
|
|
||||||
2482:Drivers/CMSIS/Include/core_cm7.h **** }
|
2482:Drivers/CMSIS/Include/core_cm7.h **** }
|
||||||
@ -4378,7 +4378,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
2536:Drivers/CMSIS/Include/core_cm7.h **** }
|
2536:Drivers/CMSIS/Include/core_cm7.h **** }
|
||||||
2537:Drivers/CMSIS/Include/core_cm7.h ****
|
2537:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
2538:Drivers/CMSIS/Include/core_cm7.h ****
|
2538:Drivers/CMSIS/Include/core_cm7.h ****
|
||||||
ARM GAS /tmp/ccvevkMB.s page 74
|
ARM GAS /tmp/ccY34ikP.s page 74
|
||||||
|
|
||||||
|
|
||||||
2539:Drivers/CMSIS/Include/core_cm7.h **** /*@} end of CMSIS_Core_CacheFunctions */
|
2539:Drivers/CMSIS/Include/core_cm7.h **** /*@} end of CMSIS_Core_CacheFunctions */
|
||||||
@ -4438,7 +4438,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
2026:Drivers/CMSIS/Include/core_cm7.h **** {
|
2026:Drivers/CMSIS/Include/core_cm7.h **** {
|
||||||
495 .loc 2 2026 3 view .LVU131
|
495 .loc 2 2026 3 view .LVU131
|
||||||
2032:Drivers/CMSIS/Include/core_cm7.h **** }
|
2032:Drivers/CMSIS/Include/core_cm7.h **** }
|
||||||
ARM GAS /tmp/ccvevkMB.s page 75
|
ARM GAS /tmp/ccY34ikP.s page 75
|
||||||
|
|
||||||
|
|
||||||
496 .loc 2 2032 5 view .LVU132
|
496 .loc 2 2032 5 view .LVU132
|
||||||
@ -4498,7 +4498,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
542 HAL_MPU_Disable:
|
542 HAL_MPU_Disable:
|
||||||
543 .LFB147:
|
543 .LFB147:
|
||||||
232:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** /**
|
232:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** /**
|
||||||
ARM GAS /tmp/ccvevkMB.s page 76
|
ARM GAS /tmp/ccY34ikP.s page 76
|
||||||
|
|
||||||
|
|
||||||
233:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** * @}
|
233:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** * @}
|
||||||
@ -4558,7 +4558,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
559 .thumb
|
559 .thumb
|
||||||
560 .syntax unified
|
560 .syntax unified
|
||||||
561 .LBE87:
|
561 .LBE87:
|
||||||
ARM GAS /tmp/ccvevkMB.s page 77
|
ARM GAS /tmp/ccY34ikP.s page 77
|
||||||
|
|
||||||
|
|
||||||
562 .LBE86:
|
562 .LBE86:
|
||||||
@ -4618,7 +4618,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
597 @ link register save eliminated.
|
597 @ link register save eliminated.
|
||||||
282:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** /* Enable the MPU */
|
282:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** /* Enable the MPU */
|
||||||
283:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** MPU->CTRL = MPU_Control | MPU_CTRL_ENABLE_Msk;
|
283:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** MPU->CTRL = MPU_Control | MPU_CTRL_ENABLE_Msk;
|
||||||
ARM GAS /tmp/ccvevkMB.s page 78
|
ARM GAS /tmp/ccY34ikP.s page 78
|
||||||
|
|
||||||
|
|
||||||
598 .loc 1 283 3 view .LVU155
|
598 .loc 1 283 3 view .LVU155
|
||||||
@ -4678,7 +4678,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
640 .L34:
|
640 .L34:
|
||||||
641 .align 2
|
641 .align 2
|
||||||
642 .L33:
|
642 .L33:
|
||||||
ARM GAS /tmp/ccvevkMB.s page 79
|
ARM GAS /tmp/ccY34ikP.s page 79
|
||||||
|
|
||||||
|
|
||||||
643 001c 00ED00E0 .word -536810240
|
643 001c 00ED00E0 .word -536810240
|
||||||
@ -4738,7 +4738,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
684 .syntax unified
|
684 .syntax unified
|
||||||
685 .thumb
|
685 .thumb
|
||||||
686 .thumb_func
|
686 .thumb_func
|
||||||
ARM GAS /tmp/ccvevkMB.s page 80
|
ARM GAS /tmp/ccY34ikP.s page 80
|
||||||
|
|
||||||
|
|
||||||
687 .fpu fpv5-d16
|
687 .fpu fpv5-d16
|
||||||
@ -4798,7 +4798,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
326:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** * @brief Initializes and configures the Region and the memory to be protected.
|
326:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** * @brief Initializes and configures the Region and the memory to be protected.
|
||||||
327:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** * @param MPU_Init Pointer to a MPU_Region_InitTypeDef structure that contains
|
327:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** * @param MPU_Init Pointer to a MPU_Region_InitTypeDef structure that contains
|
||||||
328:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** * the initialization and configuration information.
|
328:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** * the initialization and configuration information.
|
||||||
ARM GAS /tmp/ccvevkMB.s page 81
|
ARM GAS /tmp/ccY34ikP.s page 81
|
||||||
|
|
||||||
|
|
||||||
329:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** * @retval None
|
329:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** * @retval None
|
||||||
@ -4858,7 +4858,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
353:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** MPU->RASR = ((uint32_t)MPU_Init->DisableExec << MPU_RASR_XN_Pos) |
|
353:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** MPU->RASR = ((uint32_t)MPU_Init->DisableExec << MPU_RASR_XN_Pos) |
|
||||||
756 .loc 1 353 3 is_stmt 1 view .LVU197
|
756 .loc 1 353 3 is_stmt 1 view .LVU197
|
||||||
757 .loc 1 353 34 is_stmt 0 view .LVU198
|
757 .loc 1 353 34 is_stmt 0 view .LVU198
|
||||||
ARM GAS /tmp/ccvevkMB.s page 82
|
ARM GAS /tmp/ccY34ikP.s page 82
|
||||||
|
|
||||||
|
|
||||||
758 001a 017B ldrb r1, [r0, #12] @ zero_extendqisi2
|
758 001a 017B ldrb r1, [r0, #12] @ zero_extendqisi2
|
||||||
@ -4918,7 +4918,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
362:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** }
|
362:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** }
|
||||||
795 .loc 1 362 1 view .LVU217
|
795 .loc 1 362 1 view .LVU217
|
||||||
796 0050 7047 bx lr
|
796 0050 7047 bx lr
|
||||||
ARM GAS /tmp/ccvevkMB.s page 83
|
ARM GAS /tmp/ccY34ikP.s page 83
|
||||||
|
|
||||||
|
|
||||||
797 .L43:
|
797 .L43:
|
||||||
@ -4978,7 +4978,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
840 .section .text.HAL_NVIC_GetPriority,"ax",%progbits
|
840 .section .text.HAL_NVIC_GetPriority,"ax",%progbits
|
||||||
841 .align 1
|
841 .align 1
|
||||||
842 .global HAL_NVIC_GetPriority
|
842 .global HAL_NVIC_GetPriority
|
||||||
ARM GAS /tmp/ccvevkMB.s page 84
|
ARM GAS /tmp/ccY34ikP.s page 84
|
||||||
|
|
||||||
|
|
||||||
843 .syntax unified
|
843 .syntax unified
|
||||||
@ -5038,7 +5038,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
868 .loc 2 2049 3 view .LVU229
|
868 .loc 2 2049 3 view .LVU229
|
||||||
2049:Drivers/CMSIS/Include/core_cm7.h **** {
|
2049:Drivers/CMSIS/Include/core_cm7.h **** {
|
||||||
869 .loc 2 2049 6 is_stmt 0 view .LVU230
|
869 .loc 2 2049 6 is_stmt 0 view .LVU230
|
||||||
ARM GAS /tmp/ccvevkMB.s page 85
|
ARM GAS /tmp/ccY34ikP.s page 85
|
||||||
|
|
||||||
|
|
||||||
870 0002 0028 cmp r0, #0
|
870 0002 0028 cmp r0, #0
|
||||||
@ -5098,7 +5098,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
908 0022 15D9 bls .L51
|
908 0022 15D9 bls .L51
|
||||||
909 0024 0339 subs r1, r1, #3
|
909 0024 0339 subs r1, r1, #3
|
||||||
910 .LVL49:
|
910 .LVL49:
|
||||||
ARM GAS /tmp/ccvevkMB.s page 86
|
ARM GAS /tmp/ccY34ikP.s page 86
|
||||||
|
|
||||||
|
|
||||||
911 .L50:
|
911 .L50:
|
||||||
@ -5158,7 +5158,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
950 004c 0009 lsrs r0, r0, #4
|
950 004c 0009 lsrs r0, r0, #4
|
||||||
951 004e DDE7 b .L49
|
951 004e DDE7 b .L49
|
||||||
952 .LVL56:
|
952 .LVL56:
|
||||||
ARM GAS /tmp/ccvevkMB.s page 87
|
ARM GAS /tmp/ccY34ikP.s page 87
|
||||||
|
|
||||||
|
|
||||||
953 .L51:
|
953 .L51:
|
||||||
@ -5218,7 +5218,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
991 .loc 1 417 3 view .LVU267
|
991 .loc 1 417 3 view .LVU267
|
||||||
992 .LBB106:
|
992 .LBB106:
|
||||||
993 .LBI106:
|
993 .LBI106:
|
||||||
ARM GAS /tmp/ccvevkMB.s page 88
|
ARM GAS /tmp/ccY34ikP.s page 88
|
||||||
|
|
||||||
|
|
||||||
1970:Drivers/CMSIS/Include/core_cm7.h **** {
|
1970:Drivers/CMSIS/Include/core_cm7.h **** {
|
||||||
@ -5278,7 +5278,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
419:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c ****
|
419:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c ****
|
||||||
420:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** /**
|
420:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** /**
|
||||||
421:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** * @brief Gets Pending Interrupt (reads the pending register in the NVIC
|
421:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** * @brief Gets Pending Interrupt (reads the pending register in the NVIC
|
||||||
ARM GAS /tmp/ccvevkMB.s page 89
|
ARM GAS /tmp/ccY34ikP.s page 89
|
||||||
|
|
||||||
|
|
||||||
422:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** * and returns the pending bit for the specified interrupt).
|
422:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** * and returns the pending bit for the specified interrupt).
|
||||||
@ -5338,7 +5338,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1069 001a 7047 bx lr
|
1069 001a 7047 bx lr
|
||||||
1070 .L61:
|
1070 .L61:
|
||||||
1959:Drivers/CMSIS/Include/core_cm7.h **** }
|
1959:Drivers/CMSIS/Include/core_cm7.h **** }
|
||||||
ARM GAS /tmp/ccvevkMB.s page 90
|
ARM GAS /tmp/ccY34ikP.s page 90
|
||||||
|
|
||||||
|
|
||||||
1071 .loc 2 1959 11 view .LVU292
|
1071 .loc 2 1959 11 view .LVU292
|
||||||
@ -5398,7 +5398,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1108 .loc 2 1987 3 view .LVU299
|
1108 .loc 2 1987 3 view .LVU299
|
||||||
1987:Drivers/CMSIS/Include/core_cm7.h **** {
|
1987:Drivers/CMSIS/Include/core_cm7.h **** {
|
||||||
1109 .loc 2 1987 6 is_stmt 0 view .LVU300
|
1109 .loc 2 1987 6 is_stmt 0 view .LVU300
|
||||||
ARM GAS /tmp/ccvevkMB.s page 91
|
ARM GAS /tmp/ccY34ikP.s page 91
|
||||||
|
|
||||||
|
|
||||||
1110 0000 0028 cmp r0, #0
|
1110 0000 0028 cmp r0, #0
|
||||||
@ -5458,7 +5458,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
460:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** * - 1 Interrupt status is pending.
|
460:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** * - 1 Interrupt status is pending.
|
||||||
461:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** */
|
461:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** */
|
||||||
462:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** uint32_t HAL_NVIC_GetActive(IRQn_Type IRQn)
|
462:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** uint32_t HAL_NVIC_GetActive(IRQn_Type IRQn)
|
||||||
ARM GAS /tmp/ccvevkMB.s page 92
|
ARM GAS /tmp/ccY34ikP.s page 92
|
||||||
|
|
||||||
|
|
||||||
463:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** {
|
463:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** {
|
||||||
@ -5518,7 +5518,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1187 .LBE113:
|
1187 .LBE113:
|
||||||
1188 .LBE112:
|
1188 .LBE112:
|
||||||
469:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** }
|
469:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** }
|
||||||
ARM GAS /tmp/ccvevkMB.s page 93
|
ARM GAS /tmp/ccY34ikP.s page 93
|
||||||
|
|
||||||
|
|
||||||
1189 .loc 1 469 1 view .LVU324
|
1189 .loc 1 469 1 view .LVU324
|
||||||
@ -5578,7 +5578,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
490:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** }
|
490:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** }
|
||||||
491:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** }
|
491:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c **** }
|
||||||
1225 .loc 1 491 1 view .LVU331
|
1225 .loc 1 491 1 view .LVU331
|
||||||
ARM GAS /tmp/ccvevkMB.s page 94
|
ARM GAS /tmp/ccY34ikP.s page 94
|
||||||
|
|
||||||
|
|
||||||
1226 0010 7047 bx lr
|
1226 0010 7047 bx lr
|
||||||
@ -5638,7 +5638,7 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1261 .syntax unified
|
1261 .syntax unified
|
||||||
1262 .thumb
|
1262 .thumb
|
||||||
1263 .thumb_func
|
1263 .thumb_func
|
||||||
ARM GAS /tmp/ccvevkMB.s page 95
|
ARM GAS /tmp/ccY34ikP.s page 95
|
||||||
|
|
||||||
|
|
||||||
1264 .fpu fpv5-d16
|
1264 .fpu fpv5-d16
|
||||||
@ -5668,70 +5668,70 @@ ARM GAS /tmp/ccvevkMB.s page 1
|
|||||||
1287 .file 4 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f767xx.h"
|
1287 .file 4 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f767xx.h"
|
||||||
1288 .file 5 "/usr/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h"
|
1288 .file 5 "/usr/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h"
|
||||||
1289 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cortex.h"
|
1289 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cortex.h"
|
||||||
ARM GAS /tmp/ccvevkMB.s page 96
|
ARM GAS /tmp/ccY34ikP.s page 96
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 stm32f7xx_hal_cortex.c
|
*ABS*:0000000000000000 stm32f7xx_hal_cortex.c
|
||||||
/tmp/ccvevkMB.s:17 .text.HAL_NVIC_SetPriorityGrouping:0000000000000000 $t
|
/tmp/ccY34ikP.s:17 .text.HAL_NVIC_SetPriorityGrouping:0000000000000000 $t
|
||||||
/tmp/ccvevkMB.s:25 .text.HAL_NVIC_SetPriorityGrouping:0000000000000000 HAL_NVIC_SetPriorityGrouping
|
/tmp/ccY34ikP.s:25 .text.HAL_NVIC_SetPriorityGrouping:0000000000000000 HAL_NVIC_SetPriorityGrouping
|
||||||
/tmp/ccvevkMB.s:81 .text.HAL_NVIC_SetPriorityGrouping:000000000000001c $d
|
/tmp/ccY34ikP.s:81 .text.HAL_NVIC_SetPriorityGrouping:000000000000001c $d
|
||||||
/tmp/ccvevkMB.s:87 .text.HAL_NVIC_SetPriority:0000000000000000 $t
|
/tmp/ccY34ikP.s:87 .text.HAL_NVIC_SetPriority:0000000000000000 $t
|
||||||
/tmp/ccvevkMB.s:94 .text.HAL_NVIC_SetPriority:0000000000000000 HAL_NVIC_SetPriority
|
/tmp/ccY34ikP.s:94 .text.HAL_NVIC_SetPriority:0000000000000000 HAL_NVIC_SetPriority
|
||||||
/tmp/ccvevkMB.s:234 .text.HAL_NVIC_SetPriority:0000000000000060 $d
|
/tmp/ccY34ikP.s:234 .text.HAL_NVIC_SetPriority:0000000000000060 $d
|
||||||
/tmp/ccvevkMB.s:241 .text.HAL_NVIC_EnableIRQ:0000000000000000 $t
|
/tmp/ccY34ikP.s:241 .text.HAL_NVIC_EnableIRQ:0000000000000000 $t
|
||||||
/tmp/ccvevkMB.s:248 .text.HAL_NVIC_EnableIRQ:0000000000000000 HAL_NVIC_EnableIRQ
|
/tmp/ccY34ikP.s:248 .text.HAL_NVIC_EnableIRQ:0000000000000000 HAL_NVIC_EnableIRQ
|
||||||
/tmp/ccvevkMB.s:289 .text.HAL_NVIC_EnableIRQ:0000000000000018 $d
|
/tmp/ccY34ikP.s:289 .text.HAL_NVIC_EnableIRQ:0000000000000018 $d
|
||||||
/tmp/ccvevkMB.s:294 .text.HAL_NVIC_DisableIRQ:0000000000000000 $t
|
/tmp/ccY34ikP.s:294 .text.HAL_NVIC_DisableIRQ:0000000000000000 $t
|
||||||
/tmp/ccvevkMB.s:301 .text.HAL_NVIC_DisableIRQ:0000000000000000 HAL_NVIC_DisableIRQ
|
/tmp/ccY34ikP.s:301 .text.HAL_NVIC_DisableIRQ:0000000000000000 HAL_NVIC_DisableIRQ
|
||||||
/tmp/ccvevkMB.s:372 .text.HAL_NVIC_DisableIRQ:0000000000000020 $d
|
/tmp/ccY34ikP.s:372 .text.HAL_NVIC_DisableIRQ:0000000000000020 $d
|
||||||
/tmp/ccvevkMB.s:377 .text.HAL_NVIC_SystemReset:0000000000000000 $t
|
/tmp/ccY34ikP.s:377 .text.HAL_NVIC_SystemReset:0000000000000000 $t
|
||||||
/tmp/ccvevkMB.s:384 .text.HAL_NVIC_SystemReset:0000000000000000 HAL_NVIC_SystemReset
|
/tmp/ccY34ikP.s:384 .text.HAL_NVIC_SystemReset:0000000000000000 HAL_NVIC_SystemReset
|
||||||
/tmp/ccvevkMB.s:450 .text.HAL_NVIC_SystemReset:000000000000001c $d
|
/tmp/ccY34ikP.s:450 .text.HAL_NVIC_SystemReset:000000000000001c $d
|
||||||
/tmp/ccvevkMB.s:458 .text.HAL_SYSTICK_Config:0000000000000000 $t
|
/tmp/ccY34ikP.s:458 .text.HAL_SYSTICK_Config:0000000000000000 $t
|
||||||
/tmp/ccvevkMB.s:465 .text.HAL_SYSTICK_Config:0000000000000000 HAL_SYSTICK_Config
|
/tmp/ccY34ikP.s:465 .text.HAL_SYSTICK_Config:0000000000000000 HAL_SYSTICK_Config
|
||||||
/tmp/ccvevkMB.s:530 .text.HAL_SYSTICK_Config:0000000000000024 $d
|
/tmp/ccY34ikP.s:530 .text.HAL_SYSTICK_Config:0000000000000024 $d
|
||||||
/tmp/ccvevkMB.s:535 .text.HAL_MPU_Disable:0000000000000000 $t
|
/tmp/ccY34ikP.s:535 .text.HAL_MPU_Disable:0000000000000000 $t
|
||||||
/tmp/ccvevkMB.s:542 .text.HAL_MPU_Disable:0000000000000000 HAL_MPU_Disable
|
/tmp/ccY34ikP.s:542 .text.HAL_MPU_Disable:0000000000000000 HAL_MPU_Disable
|
||||||
/tmp/ccvevkMB.s:578 .text.HAL_MPU_Disable:0000000000000018 $d
|
/tmp/ccY34ikP.s:578 .text.HAL_MPU_Disable:0000000000000018 $d
|
||||||
/tmp/ccvevkMB.s:583 .text.HAL_MPU_Enable:0000000000000000 $t
|
/tmp/ccY34ikP.s:583 .text.HAL_MPU_Enable:0000000000000000 $t
|
||||||
/tmp/ccvevkMB.s:590 .text.HAL_MPU_Enable:0000000000000000 HAL_MPU_Enable
|
/tmp/ccY34ikP.s:590 .text.HAL_MPU_Enable:0000000000000000 HAL_MPU_Enable
|
||||||
/tmp/ccvevkMB.s:643 .text.HAL_MPU_Enable:000000000000001c $d
|
/tmp/ccY34ikP.s:643 .text.HAL_MPU_Enable:000000000000001c $d
|
||||||
/tmp/ccvevkMB.s:648 .text.HAL_MPU_EnableRegion:0000000000000000 $t
|
/tmp/ccY34ikP.s:648 .text.HAL_MPU_EnableRegion:0000000000000000 $t
|
||||||
/tmp/ccvevkMB.s:655 .text.HAL_MPU_EnableRegion:0000000000000000 HAL_MPU_EnableRegion
|
/tmp/ccY34ikP.s:655 .text.HAL_MPU_EnableRegion:0000000000000000 HAL_MPU_EnableRegion
|
||||||
/tmp/ccvevkMB.s:677 .text.HAL_MPU_EnableRegion:0000000000000014 $d
|
/tmp/ccY34ikP.s:677 .text.HAL_MPU_EnableRegion:0000000000000014 $d
|
||||||
/tmp/ccvevkMB.s:682 .text.HAL_MPU_DisableRegion:0000000000000000 $t
|
/tmp/ccY34ikP.s:682 .text.HAL_MPU_DisableRegion:0000000000000000 $t
|
||||||
/tmp/ccvevkMB.s:689 .text.HAL_MPU_DisableRegion:0000000000000000 HAL_MPU_DisableRegion
|
/tmp/ccY34ikP.s:689 .text.HAL_MPU_DisableRegion:0000000000000000 HAL_MPU_DisableRegion
|
||||||
/tmp/ccvevkMB.s:711 .text.HAL_MPU_DisableRegion:0000000000000014 $d
|
/tmp/ccY34ikP.s:711 .text.HAL_MPU_DisableRegion:0000000000000014 $d
|
||||||
/tmp/ccvevkMB.s:716 .text.HAL_MPU_ConfigRegion:0000000000000000 $t
|
/tmp/ccY34ikP.s:716 .text.HAL_MPU_ConfigRegion:0000000000000000 $t
|
||||||
/tmp/ccvevkMB.s:723 .text.HAL_MPU_ConfigRegion:0000000000000000 HAL_MPU_ConfigRegion
|
/tmp/ccY34ikP.s:723 .text.HAL_MPU_ConfigRegion:0000000000000000 HAL_MPU_ConfigRegion
|
||||||
/tmp/ccvevkMB.s:800 .text.HAL_MPU_ConfigRegion:0000000000000054 $d
|
/tmp/ccY34ikP.s:800 .text.HAL_MPU_ConfigRegion:0000000000000054 $d
|
||||||
/tmp/ccvevkMB.s:805 .text.HAL_NVIC_GetPriorityGrouping:0000000000000000 $t
|
/tmp/ccY34ikP.s:805 .text.HAL_NVIC_GetPriorityGrouping:0000000000000000 $t
|
||||||
/tmp/ccvevkMB.s:812 .text.HAL_NVIC_GetPriorityGrouping:0000000000000000 HAL_NVIC_GetPriorityGrouping
|
/tmp/ccY34ikP.s:812 .text.HAL_NVIC_GetPriorityGrouping:0000000000000000 HAL_NVIC_GetPriorityGrouping
|
||||||
/tmp/ccvevkMB.s:836 .text.HAL_NVIC_GetPriorityGrouping:000000000000000c $d
|
/tmp/ccY34ikP.s:836 .text.HAL_NVIC_GetPriorityGrouping:000000000000000c $d
|
||||||
/tmp/ccvevkMB.s:841 .text.HAL_NVIC_GetPriority:0000000000000000 $t
|
/tmp/ccY34ikP.s:841 .text.HAL_NVIC_GetPriority:0000000000000000 $t
|
||||||
/tmp/ccvevkMB.s:848 .text.HAL_NVIC_GetPriority:0000000000000000 HAL_NVIC_GetPriority
|
/tmp/ccY34ikP.s:848 .text.HAL_NVIC_GetPriority:0000000000000000 HAL_NVIC_GetPriority
|
||||||
/tmp/ccvevkMB.s:967 .text.HAL_NVIC_GetPriority:0000000000000054 $d
|
/tmp/ccY34ikP.s:967 .text.HAL_NVIC_GetPriority:0000000000000054 $d
|
||||||
/tmp/ccvevkMB.s:975 .text.HAL_NVIC_SetPendingIRQ:0000000000000000 $t
|
/tmp/ccY34ikP.s:975 .text.HAL_NVIC_SetPendingIRQ:0000000000000000 $t
|
||||||
/tmp/ccvevkMB.s:982 .text.HAL_NVIC_SetPendingIRQ:0000000000000000 HAL_NVIC_SetPendingIRQ
|
/tmp/ccY34ikP.s:982 .text.HAL_NVIC_SetPendingIRQ:0000000000000000 HAL_NVIC_SetPendingIRQ
|
||||||
/tmp/ccvevkMB.s:1024 .text.HAL_NVIC_SetPendingIRQ:0000000000000018 $d
|
/tmp/ccY34ikP.s:1024 .text.HAL_NVIC_SetPendingIRQ:0000000000000018 $d
|
||||||
/tmp/ccvevkMB.s:1029 .text.HAL_NVIC_GetPendingIRQ:0000000000000000 $t
|
/tmp/ccY34ikP.s:1029 .text.HAL_NVIC_GetPendingIRQ:0000000000000000 $t
|
||||||
/tmp/ccvevkMB.s:1036 .text.HAL_NVIC_GetPendingIRQ:0000000000000000 HAL_NVIC_GetPendingIRQ
|
/tmp/ccY34ikP.s:1036 .text.HAL_NVIC_GetPendingIRQ:0000000000000000 HAL_NVIC_GetPendingIRQ
|
||||||
/tmp/ccvevkMB.s:1082 .text.HAL_NVIC_GetPendingIRQ:0000000000000020 $d
|
/tmp/ccY34ikP.s:1082 .text.HAL_NVIC_GetPendingIRQ:0000000000000020 $d
|
||||||
/tmp/ccvevkMB.s:1087 .text.HAL_NVIC_ClearPendingIRQ:0000000000000000 $t
|
/tmp/ccY34ikP.s:1087 .text.HAL_NVIC_ClearPendingIRQ:0000000000000000 $t
|
||||||
/tmp/ccvevkMB.s:1094 .text.HAL_NVIC_ClearPendingIRQ:0000000000000000 HAL_NVIC_ClearPendingIRQ
|
/tmp/ccY34ikP.s:1094 .text.HAL_NVIC_ClearPendingIRQ:0000000000000000 HAL_NVIC_ClearPendingIRQ
|
||||||
/tmp/ccvevkMB.s:1136 .text.HAL_NVIC_ClearPendingIRQ:0000000000000018 $d
|
/tmp/ccY34ikP.s:1136 .text.HAL_NVIC_ClearPendingIRQ:0000000000000018 $d
|
||||||
/tmp/ccvevkMB.s:1141 .text.HAL_NVIC_GetActive:0000000000000000 $t
|
/tmp/ccY34ikP.s:1141 .text.HAL_NVIC_GetActive:0000000000000000 $t
|
||||||
/tmp/ccvevkMB.s:1148 .text.HAL_NVIC_GetActive:0000000000000000 HAL_NVIC_GetActive
|
/tmp/ccY34ikP.s:1148 .text.HAL_NVIC_GetActive:0000000000000000 HAL_NVIC_GetActive
|
||||||
/tmp/ccvevkMB.s:1194 .text.HAL_NVIC_GetActive:0000000000000020 $d
|
/tmp/ccY34ikP.s:1194 .text.HAL_NVIC_GetActive:0000000000000020 $d
|
||||||
/tmp/ccvevkMB.s:1199 .text.HAL_SYSTICK_CLKSourceConfig:0000000000000000 $t
|
/tmp/ccY34ikP.s:1199 .text.HAL_SYSTICK_CLKSourceConfig:0000000000000000 $t
|
||||||
/tmp/ccvevkMB.s:1206 .text.HAL_SYSTICK_CLKSourceConfig:0000000000000000 HAL_SYSTICK_CLKSourceConfig
|
/tmp/ccY34ikP.s:1206 .text.HAL_SYSTICK_CLKSourceConfig:0000000000000000 HAL_SYSTICK_CLKSourceConfig
|
||||||
/tmp/ccvevkMB.s:1239 .text.HAL_SYSTICK_Callback:0000000000000000 $t
|
/tmp/ccY34ikP.s:1239 .text.HAL_SYSTICK_Callback:0000000000000000 $t
|
||||||
/tmp/ccvevkMB.s:1246 .text.HAL_SYSTICK_Callback:0000000000000000 HAL_SYSTICK_Callback
|
/tmp/ccY34ikP.s:1246 .text.HAL_SYSTICK_Callback:0000000000000000 HAL_SYSTICK_Callback
|
||||||
ARM GAS /tmp/ccvevkMB.s page 97
|
ARM GAS /tmp/ccY34ikP.s page 97
|
||||||
|
|
||||||
|
|
||||||
/tmp/ccvevkMB.s:1259 .text.HAL_SYSTICK_IRQHandler:0000000000000000 $t
|
/tmp/ccY34ikP.s:1259 .text.HAL_SYSTICK_IRQHandler:0000000000000000 $t
|
||||||
/tmp/ccvevkMB.s:1266 .text.HAL_SYSTICK_IRQHandler:0000000000000000 HAL_SYSTICK_IRQHandler
|
/tmp/ccY34ikP.s:1266 .text.HAL_SYSTICK_IRQHandler:0000000000000000 HAL_SYSTICK_IRQHandler
|
||||||
|
|
||||||
NO UNDEFINED SYMBOLS
|
NO UNDEFINED SYMBOLS
|
||||||
|
|||||||
Binary file not shown.
@ -29,7 +29,9 @@ build/stm32f7xx_hal_dma.o: \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
||||||
Inc/stm32f7xx_hal_conf.h:
|
Inc/stm32f7xx_hal_conf.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
||||||
@ -62,3 +64,5 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/ccoG8wtV.s page 1
|
ARM GAS /tmp/cc6f87XX.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** __HAL_RCC_DMA1_CLK_ENABLE() or __HAL_RCC_DMA2_CLK_ENABLE().
|
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** __HAL_RCC_DMA1_CLK_ENABLE() or __HAL_RCC_DMA2_CLK_ENABLE().
|
||||||
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** *** Polling mode IO operation ***
|
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** *** Polling mode IO operation ***
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 2
|
ARM GAS /tmp/cc6f87XX.s page 2
|
||||||
|
|
||||||
|
|
||||||
32:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** =================================
|
32:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** =================================
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** *
|
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** *
|
||||||
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** * Copyright (c) 2017 STMicroelectronics.
|
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** * Copyright (c) 2017 STMicroelectronics.
|
||||||
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** * All rights reserved.
|
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** * All rights reserved.
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 3
|
ARM GAS /tmp/cc6f87XX.s page 3
|
||||||
|
|
||||||
|
|
||||||
89:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** *
|
89:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** *
|
||||||
@ -178,7 +178,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** * @{
|
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** * @{
|
||||||
144:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** */
|
144:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** */
|
||||||
145:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
145:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 4
|
ARM GAS /tmp/cc6f87XX.s page 4
|
||||||
|
|
||||||
|
|
||||||
146:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /** @addtogroup DMA_Exported_Functions_Group1
|
146:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /** @addtogroup DMA_Exported_Functions_Group1
|
||||||
@ -238,7 +238,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
200:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** assert_param(IS_DMA_PERIPHERAL_BURST(hdma->Init.PeriphBurst));
|
200:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** assert_param(IS_DMA_PERIPHERAL_BURST(hdma->Init.PeriphBurst));
|
||||||
201:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
201:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
||||||
202:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
202:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 5
|
ARM GAS /tmp/cc6f87XX.s page 5
|
||||||
|
|
||||||
|
|
||||||
203:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Change DMA peripheral state */
|
203:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Change DMA peripheral state */
|
||||||
@ -298,7 +298,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
257:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Clear Direct mode and FIFO threshold bits */
|
257:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Clear Direct mode and FIFO threshold bits */
|
||||||
258:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** tmp &= (uint32_t)~(DMA_SxFCR_DMDIS | DMA_SxFCR_FTH);
|
258:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** tmp &= (uint32_t)~(DMA_SxFCR_DMDIS | DMA_SxFCR_FTH);
|
||||||
259:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
259:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 6
|
ARM GAS /tmp/cc6f87XX.s page 6
|
||||||
|
|
||||||
|
|
||||||
260:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Prepare the DMA Stream FIFO configuration */
|
260:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Prepare the DMA Stream FIFO configuration */
|
||||||
@ -358,7 +358,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
314:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
314:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
315:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Check the DMA peripheral state */
|
315:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Check the DMA peripheral state */
|
||||||
316:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** if(hdma == NULL)
|
316:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** if(hdma == NULL)
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 7
|
ARM GAS /tmp/cc6f87XX.s page 7
|
||||||
|
|
||||||
|
|
||||||
317:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
317:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
||||||
@ -418,7 +418,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
371:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
371:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
372:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Release Lock */
|
372:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Release Lock */
|
||||||
373:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** __HAL_UNLOCK(hdma);
|
373:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** __HAL_UNLOCK(hdma);
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 8
|
ARM GAS /tmp/cc6f87XX.s page 8
|
||||||
|
|
||||||
|
|
||||||
374:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
374:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
@ -478,7 +478,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
428:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** DMA_SetConfig(hdma, SrcAddress, DstAddress, DataLength);
|
428:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** DMA_SetConfig(hdma, SrcAddress, DstAddress, DataLength);
|
||||||
429:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
429:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
430:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Enable the Peripheral */
|
430:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Enable the Peripheral */
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 9
|
ARM GAS /tmp/cc6f87XX.s page 9
|
||||||
|
|
||||||
|
|
||||||
431:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** __HAL_DMA_ENABLE(hdma);
|
431:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** __HAL_DMA_ENABLE(hdma);
|
||||||
@ -538,7 +538,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
485:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
485:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
||||||
486:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** hdma->Instance->CR |= DMA_IT_HT;
|
486:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** hdma->Instance->CR |= DMA_IT_HT;
|
||||||
487:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
487:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 10
|
ARM GAS /tmp/cc6f87XX.s page 10
|
||||||
|
|
||||||
|
|
||||||
488:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
488:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
@ -598,7 +598,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
542:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
542:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
543:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Disable the stream */
|
543:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Disable the stream */
|
||||||
544:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** __HAL_DMA_DISABLE(hdma);
|
544:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** __HAL_DMA_DISABLE(hdma);
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 11
|
ARM GAS /tmp/cc6f87XX.s page 11
|
||||||
|
|
||||||
|
|
||||||
545:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
545:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
@ -658,7 +658,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
599:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
599:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
600:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** return HAL_OK;
|
600:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** return HAL_OK;
|
||||||
601:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
601:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 12
|
ARM GAS /tmp/cc6f87XX.s page 12
|
||||||
|
|
||||||
|
|
||||||
602:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
602:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
@ -718,7 +718,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
656:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Check for the Timeout (Not applicable in circular mode)*/
|
656:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Check for the Timeout (Not applicable in circular mode)*/
|
||||||
657:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** if(Timeout != HAL_MAX_DELAY)
|
657:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** if(Timeout != HAL_MAX_DELAY)
|
||||||
658:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
658:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 13
|
ARM GAS /tmp/cc6f87XX.s page 13
|
||||||
|
|
||||||
|
|
||||||
659:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** if((Timeout == 0)||((HAL_GetTick() - tickstart ) > Timeout))
|
659:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** if((Timeout == 0)||((HAL_GetTick() - tickstart ) > Timeout))
|
||||||
@ -778,7 +778,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
713:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
713:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
714:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Change the DMA state */
|
714:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Change the DMA state */
|
||||||
715:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** hdma->State= HAL_DMA_STATE_READY;
|
715:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** hdma->State= HAL_DMA_STATE_READY;
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 14
|
ARM GAS /tmp/cc6f87XX.s page 14
|
||||||
|
|
||||||
|
|
||||||
716:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
716:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
@ -838,7 +838,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
770:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Clear the transfer error flag */
|
770:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Clear the transfer error flag */
|
||||||
771:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** regs->IFCR = DMA_FLAG_TEIF0_4 << hdma->StreamIndex;
|
771:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** regs->IFCR = DMA_FLAG_TEIF0_4 << hdma->StreamIndex;
|
||||||
772:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
772:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 15
|
ARM GAS /tmp/cc6f87XX.s page 15
|
||||||
|
|
||||||
|
|
||||||
773:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Update error code */
|
773:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Update error code */
|
||||||
@ -898,7 +898,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
827:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** hdma->XferM1HalfCpltCallback(hdma);
|
827:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** hdma->XferM1HalfCpltCallback(hdma);
|
||||||
828:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
828:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
||||||
829:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
829:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 16
|
ARM GAS /tmp/cc6f87XX.s page 16
|
||||||
|
|
||||||
|
|
||||||
830:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
830:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
||||||
@ -958,7 +958,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
884:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
884:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
||||||
885:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Current memory buffer used is Memory 0 */
|
885:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Current memory buffer used is Memory 0 */
|
||||||
886:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** if((hdma->Instance->CR & DMA_SxCR_CT) == RESET)
|
886:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** if((hdma->Instance->CR & DMA_SxCR_CT) == RESET)
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 17
|
ARM GAS /tmp/cc6f87XX.s page 17
|
||||||
|
|
||||||
|
|
||||||
887:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
887:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
||||||
@ -1018,7 +1018,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
941:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** if (++count > timeout)
|
941:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** if (++count > timeout)
|
||||||
942:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
942:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
||||||
943:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** break;
|
943:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** break;
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 18
|
ARM GAS /tmp/cc6f87XX.s page 18
|
||||||
|
|
||||||
|
|
||||||
944:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
944:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
||||||
@ -1078,7 +1078,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
998:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** case HAL_DMA_XFER_M1HALFCPLT_CB_ID:
|
998:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** case HAL_DMA_XFER_M1HALFCPLT_CB_ID:
|
||||||
999:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** hdma->XferM1HalfCpltCallback = pCallback;
|
999:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** hdma->XferM1HalfCpltCallback = pCallback;
|
||||||
1000:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** break;
|
1000:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** break;
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 19
|
ARM GAS /tmp/cc6f87XX.s page 19
|
||||||
|
|
||||||
|
|
||||||
1001:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
1001:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
@ -1138,7 +1138,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
1055:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** case HAL_DMA_XFER_M1CPLT_CB_ID:
|
1055:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** case HAL_DMA_XFER_M1CPLT_CB_ID:
|
||||||
1056:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** hdma->XferM1CpltCallback = NULL;
|
1056:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** hdma->XferM1CpltCallback = NULL;
|
||||||
1057:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** break;
|
1057:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** break;
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 20
|
ARM GAS /tmp/cc6f87XX.s page 20
|
||||||
|
|
||||||
|
|
||||||
1058:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
1058:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
@ -1198,7 +1198,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
1112:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** * @{
|
1112:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** * @{
|
||||||
1113:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** */
|
1113:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** */
|
||||||
1114:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
1114:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 21
|
ARM GAS /tmp/cc6f87XX.s page 21
|
||||||
|
|
||||||
|
|
||||||
1115:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /**
|
1115:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /**
|
||||||
@ -1258,7 +1258,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
37 .cfi_offset 4, -8
|
37 .cfi_offset 4, -8
|
||||||
38 .cfi_offset 5, -4
|
38 .cfi_offset 5, -4
|
||||||
1160:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Clear DBM bit */
|
1160:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Clear DBM bit */
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 22
|
ARM GAS /tmp/cc6f87XX.s page 22
|
||||||
|
|
||||||
|
|
||||||
1161:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** hdma->Instance->CR &= (uint32_t)(~DMA_SxCR_DBM);
|
1161:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** hdma->Instance->CR &= (uint32_t)(~DMA_SxCR_DBM);
|
||||||
@ -1318,7 +1318,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
1184:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
1184:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
||||||
70 .loc 1 1184 1 view .LVU17
|
70 .loc 1 1184 1 view .LVU17
|
||||||
71 001e 30BC pop {r4, r5}
|
71 001e 30BC pop {r4, r5}
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 23
|
ARM GAS /tmp/cc6f87XX.s page 23
|
||||||
|
|
||||||
|
|
||||||
72 .LCFI1:
|
72 .LCFI1:
|
||||||
@ -1378,7 +1378,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
113 0000 10B4 push {r4}
|
113 0000 10B4 push {r4}
|
||||||
114 .LCFI3:
|
114 .LCFI3:
|
||||||
115 .cfi_def_cfa_offset 4
|
115 .cfi_def_cfa_offset 4
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 24
|
ARM GAS /tmp/cc6f87XX.s page 24
|
||||||
|
|
||||||
|
|
||||||
116 .cfi_offset 4, -4
|
116 .cfi_offset 4, -4
|
||||||
@ -1438,7 +1438,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
151 .loc 1 1212 1 is_stmt 0 view .LVU42
|
151 .loc 1 1212 1 is_stmt 0 view .LVU42
|
||||||
152 0022 806D ldr r0, [r0, #88]
|
152 0022 806D ldr r0, [r0, #88]
|
||||||
153 .LVL8:
|
153 .LVL8:
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 25
|
ARM GAS /tmp/cc6f87XX.s page 25
|
||||||
|
|
||||||
|
|
||||||
154 .loc 1 1212 1 view .LVU43
|
154 .loc 1 1212 1 view .LVU43
|
||||||
@ -1498,7 +1498,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
1223:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** uint32_t tmp = hdma->Init.FIFOThreshold;
|
1223:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** uint32_t tmp = hdma->Init.FIFOThreshold;
|
||||||
197 .loc 1 1223 3 view .LVU49
|
197 .loc 1 1223 3 view .LVU49
|
||||||
198 .loc 1 1223 12 is_stmt 0 view .LVU50
|
198 .loc 1 1223 12 is_stmt 0 view .LVU50
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 26
|
ARM GAS /tmp/cc6f87XX.s page 26
|
||||||
|
|
||||||
|
|
||||||
199 0000 836A ldr r3, [r0, #40]
|
199 0000 836A ldr r3, [r0, #40]
|
||||||
@ -1558,7 +1558,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
236 .loc 1 1238 10 view .LVU63
|
236 .loc 1 1238 10 view .LVU63
|
||||||
237 0022 B3F1C07F cmp r3, #25165824
|
237 0022 B3F1C07F cmp r3, #25165824
|
||||||
238 0026 24D0 beq .L24
|
238 0026 24D0 beq .L24
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 27
|
ARM GAS /tmp/cc6f87XX.s page 27
|
||||||
|
|
||||||
|
|
||||||
1222:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** uint32_t tmp = hdma->Init.FIFOThreshold;
|
1222:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** uint32_t tmp = hdma->Init.FIFOThreshold;
|
||||||
@ -1618,7 +1618,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
250 .loc 1 1279 5 is_stmt 1 view .LVU68
|
250 .loc 1 1279 5 is_stmt 1 view .LVU68
|
||||||
251 0032 022B cmp r3, #2
|
251 0032 022B cmp r3, #2
|
||||||
252 0034 25D9 bls .L28
|
252 0034 25D9 bls .L28
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 28
|
ARM GAS /tmp/cc6f87XX.s page 28
|
||||||
|
|
||||||
|
|
||||||
253 0036 032B cmp r3, #3
|
253 0036 032B cmp r3, #3
|
||||||
@ -1678,7 +1678,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
292 005c 0DD1 bne .L26
|
292 005c 0DD1 bne .L26
|
||||||
1222:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** uint32_t tmp = hdma->Init.FIFOThreshold;
|
1222:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** uint32_t tmp = hdma->Init.FIFOThreshold;
|
||||||
293 .loc 1 1222 21 view .LVU79
|
293 .loc 1 1222 21 view .LVU79
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 29
|
ARM GAS /tmp/cc6f87XX.s page 29
|
||||||
|
|
||||||
|
|
||||||
294 005e 0020 movs r0, #0
|
294 005e 0020 movs r0, #0
|
||||||
@ -1738,7 +1738,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
335 .loc 1 1262 16 view .LVU92
|
335 .loc 1 1262 16 view .LVU92
|
||||||
336 007a 0120 movs r0, #1
|
336 007a 0120 movs r0, #1
|
||||||
337 .LVL37:
|
337 .LVL37:
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 30
|
ARM GAS /tmp/cc6f87XX.s page 30
|
||||||
|
|
||||||
|
|
||||||
1262:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
1262:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
||||||
@ -1798,7 +1798,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
375 .syntax unified
|
375 .syntax unified
|
||||||
376 .thumb
|
376 .thumb
|
||||||
377 .thumb_func
|
377 .thumb_func
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 31
|
ARM GAS /tmp/cc6f87XX.s page 31
|
||||||
|
|
||||||
|
|
||||||
378 .fpu fpv5-d16
|
378 .fpu fpv5-d16
|
||||||
@ -1858,7 +1858,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
416 .loc 1 192 3 view .LVU119
|
416 .loc 1 192 3 view .LVU119
|
||||||
193:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Check the memory burst, peripheral burst and FIFO threshold parameters only
|
193:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** /* Check the memory burst, peripheral burst and FIFO threshold parameters only
|
||||||
417 .loc 1 193 3 view .LVU120
|
417 .loc 1 193 3 view .LVU120
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 32
|
ARM GAS /tmp/cc6f87XX.s page 32
|
||||||
|
|
||||||
|
|
||||||
196:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
196:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
||||||
@ -1918,7 +1918,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
453 .loc 1 217 7 view .LVU139
|
453 .loc 1 217 7 view .LVU139
|
||||||
454 0034 052B cmp r3, #5
|
454 0034 052B cmp r3, #5
|
||||||
455 0036 F5D9 bls .L34
|
455 0036 F5D9 bls .L34
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 33
|
ARM GAS /tmp/cc6f87XX.s page 33
|
||||||
|
|
||||||
|
|
||||||
220:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
220:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
@ -1978,7 +1978,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
240:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** hdma->Init.PeriphDataAlignment | hdma->Init.MemDataAlignment |
|
240:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** hdma->Init.PeriphDataAlignment | hdma->Init.MemDataAlignment |
|
||||||
493 .loc 1 240 42 view .LVU157
|
493 .loc 1 240 42 view .LVU157
|
||||||
494 0056 0A43 orrs r2, r2, r1
|
494 0056 0A43 orrs r2, r2, r1
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 34
|
ARM GAS /tmp/cc6f87XX.s page 34
|
||||||
|
|
||||||
|
|
||||||
241:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** hdma->Init.Mode | hdma->Init.Priority;
|
241:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** hdma->Init.Mode | hdma->Init.Priority;
|
||||||
@ -2038,7 +2038,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
258:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
258:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
531 .loc 1 258 7 is_stmt 0 view .LVU176
|
531 .loc 1 258 7 is_stmt 0 view .LVU176
|
||||||
532 0076 25F00705 bic r5, r5, #7
|
532 0076 25F00705 bic r5, r5, #7
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 35
|
ARM GAS /tmp/cc6f87XX.s page 35
|
||||||
|
|
||||||
|
|
||||||
533 .LVL57:
|
533 .LVL57:
|
||||||
@ -2098,7 +2098,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
569 0096 FFF7FEFF bl DMA_CalcBaseAndBitshift
|
569 0096 FFF7FEFF bl DMA_CalcBaseAndBitshift
|
||||||
570 .LVL61:
|
570 .LVL61:
|
||||||
294:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
294:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 36
|
ARM GAS /tmp/cc6f87XX.s page 36
|
||||||
|
|
||||||
|
|
||||||
571 .loc 1 294 3 is_stmt 1 view .LVU195
|
571 .loc 1 294 3 is_stmt 1 view .LVU195
|
||||||
@ -2158,7 +2158,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
608 .loc 1 276 9 is_stmt 1 view .LVU212
|
608 .loc 1 276 9 is_stmt 1 view .LVU212
|
||||||
276:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
276:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
609 .loc 1 276 25 is_stmt 0 view .LVU213
|
609 .loc 1 276 25 is_stmt 0 view .LVU213
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 37
|
ARM GAS /tmp/cc6f87XX.s page 37
|
||||||
|
|
||||||
|
|
||||||
610 00b8 4023 movs r3, #64
|
610 00b8 4023 movs r3, #64
|
||||||
@ -2218,7 +2218,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
655 0004 38B5 push {r3, r4, r5, lr}
|
655 0004 38B5 push {r3, r4, r5, lr}
|
||||||
656 .LCFI7:
|
656 .LCFI7:
|
||||||
657 .cfi_def_cfa_offset 16
|
657 .cfi_def_cfa_offset 16
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 38
|
ARM GAS /tmp/cc6f87XX.s page 38
|
||||||
|
|
||||||
|
|
||||||
658 .cfi_offset 3, -16
|
658 .cfi_offset 3, -16
|
||||||
@ -2278,7 +2278,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
695 .loc 1 344 7 is_stmt 0 view .LVU241
|
695 .loc 1 344 7 is_stmt 0 view .LVU241
|
||||||
696 002a 2B68 ldr r3, [r5]
|
696 002a 2B68 ldr r3, [r5]
|
||||||
344:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
344:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 39
|
ARM GAS /tmp/cc6f87XX.s page 39
|
||||||
|
|
||||||
|
|
||||||
697 .loc 1 344 24 view .LVU242
|
697 .loc 1 344 24 view .LVU242
|
||||||
@ -2338,7 +2338,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
732 .loc 1 362 3 is_stmt 1 view .LVU261
|
732 .loc 1 362 3 is_stmt 1 view .LVU261
|
||||||
362:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** hdma->XferErrorCallback = NULL;
|
362:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** hdma->XferErrorCallback = NULL;
|
||||||
733 .loc 1 362 32 is_stmt 0 view .LVU262
|
733 .loc 1 362 32 is_stmt 0 view .LVU262
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 40
|
ARM GAS /tmp/cc6f87XX.s page 40
|
||||||
|
|
||||||
|
|
||||||
734 004c AC64 str r4, [r5, #72]
|
734 004c AC64 str r4, [r5, #72]
|
||||||
@ -2398,7 +2398,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
772 .LFE142:
|
772 .LFE142:
|
||||||
774 .section .text.HAL_DMA_Start,"ax",%progbits
|
774 .section .text.HAL_DMA_Start,"ax",%progbits
|
||||||
775 .align 1
|
775 .align 1
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 41
|
ARM GAS /tmp/cc6f87XX.s page 41
|
||||||
|
|
||||||
|
|
||||||
776 .global HAL_DMA_Start
|
776 .global HAL_DMA_Start
|
||||||
@ -2458,7 +2458,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
436:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
436:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
819 .loc 1 436 5 is_stmt 1 view .LVU291
|
819 .loc 1 436 5 is_stmt 1 view .LVU291
|
||||||
436:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
436:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 42
|
ARM GAS /tmp/cc6f87XX.s page 42
|
||||||
|
|
||||||
|
|
||||||
820 .loc 1 436 5 view .LVU292
|
820 .loc 1 436 5 view .LVU292
|
||||||
@ -2518,7 +2518,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
861 .cfi_endproc
|
861 .cfi_endproc
|
||||||
862 .LFE143:
|
862 .LFE143:
|
||||||
864 .section .text.HAL_DMA_Start_IT,"ax",%progbits
|
864 .section .text.HAL_DMA_Start_IT,"ax",%progbits
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 43
|
ARM GAS /tmp/cc6f87XX.s page 43
|
||||||
|
|
||||||
|
|
||||||
865 .align 1
|
865 .align 1
|
||||||
@ -2578,7 +2578,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
907 .loc 1 466 33 is_stmt 0 discriminator 2 view .LVU318
|
907 .loc 1 466 33 is_stmt 0 discriminator 2 view .LVU318
|
||||||
908 0014 94F83500 ldrb r0, [r4, #53] @ zero_extendqisi2
|
908 0014 94F83500 ldrb r0, [r4, #53] @ zero_extendqisi2
|
||||||
909 0018 C0B2 uxtb r0, r0
|
909 0018 C0B2 uxtb r0, r0
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 44
|
ARM GAS /tmp/cc6f87XX.s page 44
|
||||||
|
|
||||||
|
|
||||||
466:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
466:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
||||||
@ -2638,7 +2638,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
478:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
478:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
948 .loc 1 478 16 view .LVU335
|
948 .loc 1 478 16 view .LVU335
|
||||||
949 003e AB60 str r3, [r5, #8]
|
949 003e AB60 str r3, [r5, #8]
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 45
|
ARM GAS /tmp/cc6f87XX.s page 45
|
||||||
|
|
||||||
|
|
||||||
481:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** hdma->Instance->FCR |= DMA_IT_FE;
|
481:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** hdma->Instance->FCR |= DMA_IT_FE;
|
||||||
@ -2698,7 +2698,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
989 0072 D8E7 b .L59
|
989 0072 D8E7 b .L59
|
||||||
990 .cfi_endproc
|
990 .cfi_endproc
|
||||||
991 .LFE144:
|
991 .LFE144:
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 46
|
ARM GAS /tmp/cc6f87XX.s page 46
|
||||||
|
|
||||||
|
|
||||||
993 .section .text.HAL_DMA_Abort,"ax",%progbits
|
993 .section .text.HAL_DMA_Abort,"ax",%progbits
|
||||||
@ -2758,7 +2758,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
1036 .loc 1 528 5 is_stmt 1 view .LVU362
|
1036 .loc 1 528 5 is_stmt 1 view .LVU362
|
||||||
528:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
528:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
1037 .loc 1 528 5 view .LVU363
|
1037 .loc 1 528 5 view .LVU363
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 47
|
ARM GAS /tmp/cc6f87XX.s page 47
|
||||||
|
|
||||||
|
|
||||||
1038 0018 0023 movs r3, #0
|
1038 0018 0023 movs r3, #0
|
||||||
@ -2818,7 +2818,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
1075 .loc 1 540 27 view .LVU380
|
1075 .loc 1 540 27 view .LVU380
|
||||||
1076 003e 1368 ldr r3, [r2]
|
1076 003e 1368 ldr r3, [r2]
|
||||||
1077 0040 23F00803 bic r3, r3, #8
|
1077 0040 23F00803 bic r3, r3, #8
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 48
|
ARM GAS /tmp/cc6f87XX.s page 48
|
||||||
|
|
||||||
|
|
||||||
1078 0044 1360 str r3, [r2]
|
1078 0044 1360 str r3, [r2]
|
||||||
@ -2878,7 +2878,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
1116 0070 84F83430 strb r3, [r4, #52]
|
1116 0070 84F83430 strb r3, [r4, #52]
|
||||||
559:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
559:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
1117 .loc 1 559 9 view .LVU397
|
1117 .loc 1 559 9 view .LVU397
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 49
|
ARM GAS /tmp/cc6f87XX.s page 49
|
||||||
|
|
||||||
|
|
||||||
561:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
561:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
||||||
@ -2938,7 +2938,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
1158 .thumb
|
1158 .thumb
|
||||||
1159 .thumb_func
|
1159 .thumb_func
|
||||||
1160 .fpu fpv5-d16
|
1160 .fpu fpv5-d16
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 50
|
ARM GAS /tmp/cc6f87XX.s page 50
|
||||||
|
|
||||||
|
|
||||||
1162 HAL_DMA_Abort_IT:
|
1162 HAL_DMA_Abort_IT:
|
||||||
@ -2998,7 +2998,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
601:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
601:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
1202 .loc 1 601 1 view .LVU427
|
1202 .loc 1 601 1 view .LVU427
|
||||||
1203 0024 7047 bx lr
|
1203 0024 7047 bx lr
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 51
|
ARM GAS /tmp/cc6f87XX.s page 51
|
||||||
|
|
||||||
|
|
||||||
1204 .cfi_endproc
|
1204 .cfi_endproc
|
||||||
@ -3058,7 +3058,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
624:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
624:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
||||||
1250 .loc 1 624 5 view .LVU438
|
1250 .loc 1 624 5 view .LVU438
|
||||||
1251 0014 022B cmp r3, #2
|
1251 0014 022B cmp r3, #2
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 52
|
ARM GAS /tmp/cc6f87XX.s page 52
|
||||||
|
|
||||||
|
|
||||||
1252 0016 07D0 beq .L79
|
1252 0016 07D0 beq .L79
|
||||||
@ -3118,7 +3118,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
1288 .loc 1 643 20 view .LVU456
|
1288 .loc 1 643 20 view .LVU456
|
||||||
1289 003c 4FF0200A mov r10, #32
|
1289 003c 4FF0200A mov r10, #32
|
||||||
1290 0040 0AFA03FA lsl r10, r10, r3
|
1290 0040 0AFA03FA lsl r10, r10, r3
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 53
|
ARM GAS /tmp/cc6f87XX.s page 53
|
||||||
|
|
||||||
|
|
||||||
1291 .LVL111:
|
1291 .LVL111:
|
||||||
@ -3178,7 +3178,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
1329 .loc 1 675 5 is_stmt 1 view .LVU472
|
1329 .loc 1 675 5 is_stmt 1 view .LVU472
|
||||||
675:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
675:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
1330 .loc 1 675 12 is_stmt 0 view .LVU473
|
1330 .loc 1 675 12 is_stmt 0 view .LVU473
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 54
|
ARM GAS /tmp/cc6f87XX.s page 54
|
||||||
|
|
||||||
|
|
||||||
1331 006c 3B68 ldr r3, [r7]
|
1331 006c 3B68 ldr r3, [r7]
|
||||||
@ -3238,7 +3238,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
695:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
695:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
||||||
1369 .loc 1 695 5 is_stmt 1 view .LVU490
|
1369 .loc 1 695 5 is_stmt 1 view .LVU490
|
||||||
695:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
695:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 55
|
ARM GAS /tmp/cc6f87XX.s page 55
|
||||||
|
|
||||||
|
|
||||||
1370 .loc 1 695 44 is_stmt 0 view .LVU491
|
1370 .loc 1 695 44 is_stmt 0 view .LVU491
|
||||||
@ -3298,7 +3298,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
1409 00c0 C0E7 b .L83
|
1409 00c0 C0E7 b .L83
|
||||||
1410 .LVL121:
|
1410 .LVL121:
|
||||||
1411 .L86:
|
1411 .L86:
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 56
|
ARM GAS /tmp/cc6f87XX.s page 56
|
||||||
|
|
||||||
|
|
||||||
662:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
662:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
@ -3358,7 +3358,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
1447 .loc 1 728 63 is_stmt 0 view .LVU525
|
1447 .loc 1 728 63 is_stmt 0 view .LVU525
|
||||||
1448 00e8 E26D ldr r2, [r4, #92]
|
1448 00e8 E26D ldr r2, [r4, #92]
|
||||||
728:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
728:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 57
|
ARM GAS /tmp/cc6f87XX.s page 57
|
||||||
|
|
||||||
|
|
||||||
1449 .loc 1 728 56 view .LVU526
|
1449 .loc 1 728 56 view .LVU526
|
||||||
@ -3418,7 +3418,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
718:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
718:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
1487 .loc 1 718 7 view .LVU543
|
1487 .loc 1 718 7 view .LVU543
|
||||||
720:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
720:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 58
|
ARM GAS /tmp/cc6f87XX.s page 58
|
||||||
|
|
||||||
|
|
||||||
1488 .loc 1 720 7 view .LVU544
|
1488 .loc 1 720 7 view .LVU544
|
||||||
@ -3478,7 +3478,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
754:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** uint32_t timeout = SystemCoreClock / 9600;
|
754:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** uint32_t timeout = SystemCoreClock / 9600;
|
||||||
1535 .loc 1 754 3 view .LVU554
|
1535 .loc 1 754 3 view .LVU554
|
||||||
754:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** uint32_t timeout = SystemCoreClock / 9600;
|
754:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** uint32_t timeout = SystemCoreClock / 9600;
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 59
|
ARM GAS /tmp/cc6f87XX.s page 59
|
||||||
|
|
||||||
|
|
||||||
1536 .loc 1 754 17 is_stmt 0 view .LVU555
|
1536 .loc 1 754 17 is_stmt 0 view .LVU555
|
||||||
@ -3538,7 +3538,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
1574 002e 1A68 ldr r2, [r3]
|
1574 002e 1A68 ldr r2, [r3]
|
||||||
1575 0030 22F00402 bic r2, r2, #4
|
1575 0030 22F00402 bic r2, r2, #4
|
||||||
1576 0034 1A60 str r2, [r3]
|
1576 0034 1A60 str r2, [r3]
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 60
|
ARM GAS /tmp/cc6f87XX.s page 60
|
||||||
|
|
||||||
|
|
||||||
771:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
771:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
@ -3598,7 +3598,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
1614 0062 6365 str r3, [r4, #84]
|
1614 0062 6365 str r3, [r4, #84]
|
||||||
1615 .L99:
|
1615 .L99:
|
||||||
790:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
790:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 61
|
ARM GAS /tmp/cc6f87XX.s page 61
|
||||||
|
|
||||||
|
|
||||||
1616 .loc 1 790 3 is_stmt 1 view .LVU589
|
1616 .loc 1 790 3 is_stmt 1 view .LVU589
|
||||||
@ -3658,7 +3658,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
804:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
804:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
||||||
1654 .loc 1 804 7 view .LVU606
|
1654 .loc 1 804 7 view .LVU606
|
||||||
1655 0090 12F0080F tst r2, #8
|
1655 0090 12F0080F tst r2, #8
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 62
|
ARM GAS /tmp/cc6f87XX.s page 62
|
||||||
|
|
||||||
|
|
||||||
1656 0094 1FD0 beq .L101
|
1656 0094 1FD0 beq .L101
|
||||||
@ -3718,7 +3718,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
827:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
827:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** }
|
||||||
1693 .loc 1 827 13 is_stmt 1 view .LVU624
|
1693 .loc 1 827 13 is_stmt 1 view .LVU624
|
||||||
1694 00b8 2046 mov r0, r4
|
1694 00b8 2046 mov r0, r4
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 63
|
ARM GAS /tmp/cc6f87XX.s page 63
|
||||||
|
|
||||||
|
|
||||||
1695 .LVL130:
|
1695 .LVL130:
|
||||||
@ -3778,7 +3778,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
1734 00de 55D0 beq .L105
|
1734 00de 55D0 beq .L105
|
||||||
851:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
851:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
||||||
1735 .loc 1 851 5 is_stmt 1 view .LVU640
|
1735 .loc 1 851 5 is_stmt 1 view .LVU640
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 64
|
ARM GAS /tmp/cc6f87XX.s page 64
|
||||||
|
|
||||||
|
|
||||||
851:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
851:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
||||||
@ -3838,7 +3838,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
1772 .loc 1 891 13 is_stmt 1 view .LVU658
|
1772 .loc 1 891 13 is_stmt 1 view .LVU658
|
||||||
1773 010e 2046 mov r0, r4
|
1773 010e 2046 mov r0, r4
|
||||||
1774 0110 9847 blx r3
|
1774 0110 9847 blx r3
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 65
|
ARM GAS /tmp/cc6f87XX.s page 65
|
||||||
|
|
||||||
|
|
||||||
1775 .LVL135:
|
1775 .LVL135:
|
||||||
@ -3898,7 +3898,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
1813 013c BB60 str r3, [r7, #8]
|
1813 013c BB60 str r3, [r7, #8]
|
||||||
871:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
871:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
1814 .loc 1 871 9 is_stmt 1 view .LVU675
|
1814 .loc 1 871 9 is_stmt 1 view .LVU675
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 66
|
ARM GAS /tmp/cc6f87XX.s page 66
|
||||||
|
|
||||||
|
|
||||||
871:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
871:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
@ -3958,7 +3958,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
907:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
907:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
||||||
1854 .loc 1 907 9 view .LVU691
|
1854 .loc 1 907 9 view .LVU691
|
||||||
907:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
907:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 67
|
ARM GAS /tmp/cc6f87XX.s page 67
|
||||||
|
|
||||||
|
|
||||||
1855 .loc 1 907 27 is_stmt 0 view .LVU692
|
1855 .loc 1 907 27 is_stmt 0 view .LVU692
|
||||||
@ -4018,7 +4018,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
1892 0190 636D ldr r3, [r4, #84]
|
1892 0190 636D ldr r3, [r4, #84]
|
||||||
932:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
932:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
||||||
1893 .loc 1 932 7 view .LVU710
|
1893 .loc 1 932 7 view .LVU710
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 68
|
ARM GAS /tmp/cc6f87XX.s page 68
|
||||||
|
|
||||||
|
|
||||||
1894 0192 13F0010F tst r3, #1
|
1894 0192 13F0010F tst r3, #1
|
||||||
@ -4078,7 +4078,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
952:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
952:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
1933 .loc 1 952 7 discriminator 1 view .LVU726
|
1933 .loc 1 952 7 discriminator 1 view .LVU726
|
||||||
956:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
956:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** {
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 69
|
ARM GAS /tmp/cc6f87XX.s page 69
|
||||||
|
|
||||||
|
|
||||||
1934 .loc 1 956 5 discriminator 1 view .LVU727
|
1934 .loc 1 956 5 discriminator 1 view .LVU727
|
||||||
@ -4138,7 +4138,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
980:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
980:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
1981 .loc 1 980 3 view .LVU737
|
1981 .loc 1 980 3 view .LVU737
|
||||||
1982 0002 90F83400 ldrb r0, [r0, #52] @ zero_extendqisi2
|
1982 0002 90F83400 ldrb r0, [r0, #52] @ zero_extendqisi2
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 70
|
ARM GAS /tmp/cc6f87XX.s page 70
|
||||||
|
|
||||||
|
|
||||||
1983 .LVL143:
|
1983 .LVL143:
|
||||||
@ -4198,7 +4198,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
2023 0030 0F .byte (.L127-.L126)/2
|
2023 0030 0F .byte (.L127-.L126)/2
|
||||||
2024 0031 12 .byte (.L125-.L126)/2
|
2024 0031 12 .byte (.L125-.L126)/2
|
||||||
2025 .p2align 1
|
2025 .p2align 1
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 71
|
ARM GAS /tmp/cc6f87XX.s page 71
|
||||||
|
|
||||||
|
|
||||||
2026 .L131:
|
2026 .L131:
|
||||||
@ -4258,7 +4258,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
2060 .loc 1 1000 7 view .LVU771
|
2060 .loc 1 1000 7 view .LVU771
|
||||||
2061 0048 E8E7 b .L124
|
2061 0048 E8E7 b .L124
|
||||||
2062 .L127:
|
2062 .L127:
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 72
|
ARM GAS /tmp/cc6f87XX.s page 72
|
||||||
|
|
||||||
|
|
||||||
1003:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** break;
|
1003:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c **** break;
|
||||||
@ -4318,7 +4318,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
2105 0000 0346 mov r3, r0
|
2105 0000 0346 mov r3, r0
|
||||||
1038:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
1038:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
2106 .loc 1 1038 3 is_stmt 1 view .LVU786
|
2106 .loc 1 1038 3 is_stmt 1 view .LVU786
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 73
|
ARM GAS /tmp/cc6f87XX.s page 73
|
||||||
|
|
||||||
|
|
||||||
2107 .LVL148:
|
2107 .LVL148:
|
||||||
@ -4378,7 +4378,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
2146 002d 08 .byte (.L144-.L139)/2
|
2146 002d 08 .byte (.L144-.L139)/2
|
||||||
2147 002e 0B .byte (.L143-.L139)/2
|
2147 002e 0B .byte (.L143-.L139)/2
|
||||||
2148 002f 0E .byte (.L142-.L139)/2
|
2148 002f 0E .byte (.L142-.L139)/2
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 74
|
ARM GAS /tmp/cc6f87XX.s page 74
|
||||||
|
|
||||||
|
|
||||||
2149 0030 11 .byte (.L141-.L139)/2
|
2149 0030 11 .byte (.L141-.L139)/2
|
||||||
@ -4438,7 +4438,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
2187 004e 0020 movs r0, #0
|
2187 004e 0020 movs r0, #0
|
||||||
2188 0050 D864 str r0, [r3, #76]
|
2188 0050 D864 str r0, [r3, #76]
|
||||||
1065:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
1065:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c ****
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 75
|
ARM GAS /tmp/cc6f87XX.s page 75
|
||||||
|
|
||||||
|
|
||||||
2189 .loc 1 1065 7 is_stmt 1 view .LVU818
|
2189 .loc 1 1065 7 is_stmt 1 view .LVU818
|
||||||
@ -4498,7 +4498,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
2225 .loc 1 1094 1 view .LVU836
|
2225 .loc 1 1094 1 view .LVU836
|
||||||
2226 006c 7047 bx lr
|
2226 006c 7047 bx lr
|
||||||
2227 .cfi_endproc
|
2227 .cfi_endproc
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 76
|
ARM GAS /tmp/cc6f87XX.s page 76
|
||||||
|
|
||||||
|
|
||||||
2228 .LFE150:
|
2228 .LFE150:
|
||||||
@ -4558,7 +4558,7 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
2278 .LFE152:
|
2278 .LFE152:
|
||||||
2280 .section .rodata.flagBitshiftOffset.0,"a"
|
2280 .section .rodata.flagBitshiftOffset.0,"a"
|
||||||
2281 .align 2
|
2281 .align 2
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 77
|
ARM GAS /tmp/cc6f87XX.s page 77
|
||||||
|
|
||||||
|
|
||||||
2282 .set .LANCHOR0,. + 0
|
2282 .set .LANCHOR0,. + 0
|
||||||
@ -4574,53 +4574,53 @@ ARM GAS /tmp/ccoG8wtV.s page 1
|
|||||||
2293 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma.h"
|
2293 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma.h"
|
||||||
2294 .file 7 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/system_stm32f7xx.h"
|
2294 .file 7 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/system_stm32f7xx.h"
|
||||||
2295 .file 8 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h"
|
2295 .file 8 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h"
|
||||||
ARM GAS /tmp/ccoG8wtV.s page 78
|
ARM GAS /tmp/cc6f87XX.s page 78
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 stm32f7xx_hal_dma.c
|
*ABS*:0000000000000000 stm32f7xx_hal_dma.c
|
||||||
/tmp/ccoG8wtV.s:17 .text.DMA_SetConfig:0000000000000000 $t
|
/tmp/cc6f87XX.s:17 .text.DMA_SetConfig:0000000000000000 $t
|
||||||
/tmp/ccoG8wtV.s:24 .text.DMA_SetConfig:0000000000000000 DMA_SetConfig
|
/tmp/cc6f87XX.s:24 .text.DMA_SetConfig:0000000000000000 DMA_SetConfig
|
||||||
/tmp/ccoG8wtV.s:98 .text.DMA_CalcBaseAndBitshift:0000000000000000 $t
|
/tmp/cc6f87XX.s:98 .text.DMA_CalcBaseAndBitshift:0000000000000000 $t
|
||||||
/tmp/ccoG8wtV.s:104 .text.DMA_CalcBaseAndBitshift:0000000000000000 DMA_CalcBaseAndBitshift
|
/tmp/cc6f87XX.s:104 .text.DMA_CalcBaseAndBitshift:0000000000000000 DMA_CalcBaseAndBitshift
|
||||||
/tmp/ccoG8wtV.s:175 .text.DMA_CalcBaseAndBitshift:0000000000000034 $d
|
/tmp/cc6f87XX.s:175 .text.DMA_CalcBaseAndBitshift:0000000000000034 $d
|
||||||
/tmp/ccoG8wtV.s:182 .text.DMA_CheckFifoParam:0000000000000000 $t
|
/tmp/cc6f87XX.s:182 .text.DMA_CheckFifoParam:0000000000000000 $t
|
||||||
/tmp/ccoG8wtV.s:188 .text.DMA_CheckFifoParam:0000000000000000 DMA_CheckFifoParam
|
/tmp/cc6f87XX.s:188 .text.DMA_CheckFifoParam:0000000000000000 DMA_CheckFifoParam
|
||||||
/tmp/ccoG8wtV.s:274 .text.DMA_CheckFifoParam:000000000000004e $d
|
/tmp/cc6f87XX.s:274 .text.DMA_CheckFifoParam:000000000000004e $d
|
||||||
/tmp/ccoG8wtV.s:278 .text.DMA_CheckFifoParam:0000000000000052 $t
|
/tmp/cc6f87XX.s:278 .text.DMA_CheckFifoParam:0000000000000052 $t
|
||||||
/tmp/ccoG8wtV.s:373 .text.HAL_DMA_Init:0000000000000000 $t
|
/tmp/cc6f87XX.s:373 .text.HAL_DMA_Init:0000000000000000 $t
|
||||||
/tmp/ccoG8wtV.s:380 .text.HAL_DMA_Init:0000000000000000 HAL_DMA_Init
|
/tmp/cc6f87XX.s:380 .text.HAL_DMA_Init:0000000000000000 HAL_DMA_Init
|
||||||
/tmp/ccoG8wtV.s:630 .text.HAL_DMA_Init:00000000000000cc $d
|
/tmp/cc6f87XX.s:630 .text.HAL_DMA_Init:00000000000000cc $d
|
||||||
/tmp/ccoG8wtV.s:635 .text.HAL_DMA_DeInit:0000000000000000 $t
|
/tmp/cc6f87XX.s:635 .text.HAL_DMA_DeInit:0000000000000000 $t
|
||||||
/tmp/ccoG8wtV.s:642 .text.HAL_DMA_DeInit:0000000000000000 HAL_DMA_DeInit
|
/tmp/cc6f87XX.s:642 .text.HAL_DMA_DeInit:0000000000000000 HAL_DMA_DeInit
|
||||||
/tmp/ccoG8wtV.s:775 .text.HAL_DMA_Start:0000000000000000 $t
|
/tmp/cc6f87XX.s:775 .text.HAL_DMA_Start:0000000000000000 $t
|
||||||
/tmp/ccoG8wtV.s:782 .text.HAL_DMA_Start:0000000000000000 HAL_DMA_Start
|
/tmp/cc6f87XX.s:782 .text.HAL_DMA_Start:0000000000000000 HAL_DMA_Start
|
||||||
/tmp/ccoG8wtV.s:865 .text.HAL_DMA_Start_IT:0000000000000000 $t
|
/tmp/cc6f87XX.s:865 .text.HAL_DMA_Start_IT:0000000000000000 $t
|
||||||
/tmp/ccoG8wtV.s:872 .text.HAL_DMA_Start_IT:0000000000000000 HAL_DMA_Start_IT
|
/tmp/cc6f87XX.s:872 .text.HAL_DMA_Start_IT:0000000000000000 HAL_DMA_Start_IT
|
||||||
/tmp/ccoG8wtV.s:994 .text.HAL_DMA_Abort:0000000000000000 $t
|
/tmp/cc6f87XX.s:994 .text.HAL_DMA_Abort:0000000000000000 $t
|
||||||
/tmp/ccoG8wtV.s:1001 .text.HAL_DMA_Abort:0000000000000000 HAL_DMA_Abort
|
/tmp/cc6f87XX.s:1001 .text.HAL_DMA_Abort:0000000000000000 HAL_DMA_Abort
|
||||||
/tmp/ccoG8wtV.s:1155 .text.HAL_DMA_Abort_IT:0000000000000000 $t
|
/tmp/cc6f87XX.s:1155 .text.HAL_DMA_Abort_IT:0000000000000000 $t
|
||||||
/tmp/ccoG8wtV.s:1162 .text.HAL_DMA_Abort_IT:0000000000000000 HAL_DMA_Abort_IT
|
/tmp/cc6f87XX.s:1162 .text.HAL_DMA_Abort_IT:0000000000000000 HAL_DMA_Abort_IT
|
||||||
/tmp/ccoG8wtV.s:1208 .text.HAL_DMA_PollForTransfer:0000000000000000 $t
|
/tmp/cc6f87XX.s:1208 .text.HAL_DMA_PollForTransfer:0000000000000000 $t
|
||||||
/tmp/ccoG8wtV.s:1215 .text.HAL_DMA_PollForTransfer:0000000000000000 HAL_DMA_PollForTransfer
|
/tmp/cc6f87XX.s:1215 .text.HAL_DMA_PollForTransfer:0000000000000000 HAL_DMA_PollForTransfer
|
||||||
/tmp/ccoG8wtV.s:1507 .text.HAL_DMA_IRQHandler:0000000000000000 $t
|
/tmp/cc6f87XX.s:1507 .text.HAL_DMA_IRQHandler:0000000000000000 $t
|
||||||
/tmp/ccoG8wtV.s:1514 .text.HAL_DMA_IRQHandler:0000000000000000 HAL_DMA_IRQHandler
|
/tmp/cc6f87XX.s:1514 .text.HAL_DMA_IRQHandler:0000000000000000 HAL_DMA_IRQHandler
|
||||||
/tmp/ccoG8wtV.s:1955 .text.HAL_DMA_IRQHandler:00000000000001d4 $d
|
/tmp/cc6f87XX.s:1955 .text.HAL_DMA_IRQHandler:00000000000001d4 $d
|
||||||
/tmp/ccoG8wtV.s:1961 .text.HAL_DMA_RegisterCallback:0000000000000000 $t
|
/tmp/cc6f87XX.s:1961 .text.HAL_DMA_RegisterCallback:0000000000000000 $t
|
||||||
/tmp/ccoG8wtV.s:1968 .text.HAL_DMA_RegisterCallback:0000000000000000 HAL_DMA_RegisterCallback
|
/tmp/cc6f87XX.s:1968 .text.HAL_DMA_RegisterCallback:0000000000000000 HAL_DMA_RegisterCallback
|
||||||
/tmp/ccoG8wtV.s:2019 .text.HAL_DMA_RegisterCallback:000000000000002c $d
|
/tmp/cc6f87XX.s:2019 .text.HAL_DMA_RegisterCallback:000000000000002c $d
|
||||||
/tmp/ccoG8wtV.s:2025 .text.HAL_DMA_RegisterCallback:0000000000000032 $t
|
/tmp/cc6f87XX.s:2025 .text.HAL_DMA_RegisterCallback:0000000000000032 $t
|
||||||
/tmp/ccoG8wtV.s:2089 .text.HAL_DMA_UnRegisterCallback:0000000000000000 $t
|
/tmp/cc6f87XX.s:2089 .text.HAL_DMA_UnRegisterCallback:0000000000000000 $t
|
||||||
/tmp/ccoG8wtV.s:2096 .text.HAL_DMA_UnRegisterCallback:0000000000000000 HAL_DMA_UnRegisterCallback
|
/tmp/cc6f87XX.s:2096 .text.HAL_DMA_UnRegisterCallback:0000000000000000 HAL_DMA_UnRegisterCallback
|
||||||
/tmp/ccoG8wtV.s:2145 .text.HAL_DMA_UnRegisterCallback:000000000000002c $d
|
/tmp/cc6f87XX.s:2145 .text.HAL_DMA_UnRegisterCallback:000000000000002c $d
|
||||||
/tmp/ccoG8wtV.s:2231 .text.HAL_DMA_GetState:0000000000000000 $t
|
/tmp/cc6f87XX.s:2231 .text.HAL_DMA_GetState:0000000000000000 $t
|
||||||
/tmp/ccoG8wtV.s:2238 .text.HAL_DMA_GetState:0000000000000000 HAL_DMA_GetState
|
/tmp/cc6f87XX.s:2238 .text.HAL_DMA_GetState:0000000000000000 HAL_DMA_GetState
|
||||||
/tmp/ccoG8wtV.s:2256 .text.HAL_DMA_GetError:0000000000000000 $t
|
/tmp/cc6f87XX.s:2256 .text.HAL_DMA_GetError:0000000000000000 $t
|
||||||
/tmp/ccoG8wtV.s:2263 .text.HAL_DMA_GetError:0000000000000000 HAL_DMA_GetError
|
/tmp/cc6f87XX.s:2263 .text.HAL_DMA_GetError:0000000000000000 HAL_DMA_GetError
|
||||||
/tmp/ccoG8wtV.s:2281 .rodata.flagBitshiftOffset.0:0000000000000000 $d
|
/tmp/cc6f87XX.s:2281 .rodata.flagBitshiftOffset.0:0000000000000000 $d
|
||||||
/tmp/ccoG8wtV.s:2285 .rodata.flagBitshiftOffset.0:0000000000000000 flagBitshiftOffset.0
|
/tmp/cc6f87XX.s:2285 .rodata.flagBitshiftOffset.0:0000000000000000 flagBitshiftOffset.0
|
||||||
/tmp/ccoG8wtV.s:2152 .text.HAL_DMA_UnRegisterCallback:0000000000000033 $d
|
/tmp/cc6f87XX.s:2152 .text.HAL_DMA_UnRegisterCallback:0000000000000033 $d
|
||||||
/tmp/ccoG8wtV.s:2152 .text.HAL_DMA_UnRegisterCallback:0000000000000034 $t
|
/tmp/cc6f87XX.s:2152 .text.HAL_DMA_UnRegisterCallback:0000000000000034 $t
|
||||||
|
|
||||||
UNDEFINED SYMBOLS
|
UNDEFINED SYMBOLS
|
||||||
HAL_GetTick
|
HAL_GetTick
|
||||||
|
|||||||
Binary file not shown.
@ -29,7 +29,9 @@ build/stm32f7xx_hal_dma_ex.o: \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
||||||
Inc/stm32f7xx_hal_conf.h:
|
Inc/stm32f7xx_hal_conf.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
||||||
@ -62,3 +64,5 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/ccyquBV4.s page 1
|
ARM GAS /tmp/ccs4q8w6.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** * All rights reserved.
|
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** * All rights reserved.
|
||||||
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** *
|
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** *
|
||||||
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** * This software is licensed under terms that can be found in the LICENSE file in
|
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** * This software is licensed under terms that can be found in the LICENSE file in
|
||||||
ARM GAS /tmp/ccyquBV4.s page 2
|
ARM GAS /tmp/ccs4q8w6.s page 2
|
||||||
|
|
||||||
|
|
||||||
32:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** * the root directory of this software component.
|
32:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** * the root directory of this software component.
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c ****
|
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c ****
|
||||||
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** @endverbatim
|
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** @endverbatim
|
||||||
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** * @{
|
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** * @{
|
||||||
ARM GAS /tmp/ccyquBV4.s page 3
|
ARM GAS /tmp/ccs4q8w6.s page 3
|
||||||
|
|
||||||
|
|
||||||
89:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** */
|
89:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** */
|
||||||
@ -178,7 +178,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** return status;
|
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** return status;
|
||||||
144:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** }
|
144:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** }
|
||||||
145:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c ****
|
145:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c ****
|
||||||
ARM GAS /tmp/ccyquBV4.s page 4
|
ARM GAS /tmp/ccs4q8w6.s page 4
|
||||||
|
|
||||||
|
|
||||||
146:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** /**
|
146:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** /**
|
||||||
@ -238,7 +238,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
200:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c ****
|
200:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c ****
|
||||||
201:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** if((hdma->XferHalfCpltCallback != NULL) || (hdma->XferM1HalfCpltCallback != NULL))
|
201:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** if((hdma->XferHalfCpltCallback != NULL) || (hdma->XferM1HalfCpltCallback != NULL))
|
||||||
202:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** {
|
202:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** {
|
||||||
ARM GAS /tmp/ccyquBV4.s page 5
|
ARM GAS /tmp/ccs4q8w6.s page 5
|
||||||
|
|
||||||
|
|
||||||
203:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** hdma->Instance->CR |= DMA_IT_HT;
|
203:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** hdma->Instance->CR |= DMA_IT_HT;
|
||||||
@ -298,7 +298,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
257:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c ****
|
257:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c ****
|
||||||
258:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** /** @addtogroup DMAEx_Private_Functions
|
258:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** /** @addtogroup DMAEx_Private_Functions
|
||||||
259:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** * @{
|
259:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** * @{
|
||||||
ARM GAS /tmp/ccyquBV4.s page 6
|
ARM GAS /tmp/ccs4q8w6.s page 6
|
||||||
|
|
||||||
|
|
||||||
260:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** */
|
260:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** */
|
||||||
@ -358,7 +358,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
52 .loc 1 289 25 view .LVU9
|
52 .loc 1 289 25 view .LVU9
|
||||||
53 000e 9960 str r1, [r3, #8]
|
53 000e 9960 str r1, [r3, #8]
|
||||||
54 .LVL2:
|
54 .LVL2:
|
||||||
ARM GAS /tmp/ccyquBV4.s page 7
|
ARM GAS /tmp/ccs4q8w6.s page 7
|
||||||
|
|
||||||
|
|
||||||
290:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c ****
|
290:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c ****
|
||||||
@ -418,7 +418,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
99 .cfi_startproc
|
99 .cfi_startproc
|
||||||
100 @ args = 4, pretend = 0, frame = 0
|
100 @ args = 4, pretend = 0, frame = 0
|
||||||
101 @ frame_needed = 0, uses_anonymous_args = 0
|
101 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
ARM GAS /tmp/ccyquBV4.s page 8
|
ARM GAS /tmp/ccs4q8w6.s page 8
|
||||||
|
|
||||||
|
|
||||||
103:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** HAL_StatusTypeDef status = HAL_OK;
|
103:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** HAL_StatusTypeDef status = HAL_OK;
|
||||||
@ -478,7 +478,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
141 .loc 1 144 1 view .LVU35
|
141 .loc 1 144 1 view .LVU35
|
||||||
142 0024 38BD pop {r3, r4, r5, pc}
|
142 0024 38BD pop {r3, r4, r5, pc}
|
||||||
143 .LVL9:
|
143 .LVL9:
|
||||||
ARM GAS /tmp/ccyquBV4.s page 9
|
ARM GAS /tmp/ccs4q8w6.s page 9
|
||||||
|
|
||||||
|
|
||||||
144 .L12:
|
144 .L12:
|
||||||
@ -538,7 +538,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
182 .LVL15:
|
182 .LVL15:
|
||||||
135:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** }
|
135:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** }
|
||||||
183 .loc 1 135 7 is_stmt 1 view .LVU52
|
183 .loc 1 135 7 is_stmt 1 view .LVU52
|
||||||
ARM GAS /tmp/ccyquBV4.s page 10
|
ARM GAS /tmp/ccs4q8w6.s page 10
|
||||||
|
|
||||||
|
|
||||||
184 004c 2268 ldr r2, [r4]
|
184 004c 2268 ldr r2, [r4]
|
||||||
@ -598,7 +598,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
231 0006 8028 cmp r0, #128
|
231 0006 8028 cmp r0, #128
|
||||||
232 0008 11D0 beq .L302
|
232 0008 11D0 beq .L302
|
||||||
171:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c ****
|
171:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c ****
|
||||||
ARM GAS /tmp/ccyquBV4.s page 11
|
ARM GAS /tmp/ccs4q8w6.s page 11
|
||||||
|
|
||||||
|
|
||||||
233 .loc 1 171 3 is_stmt 1 view .LVU62
|
233 .loc 1 171 3 is_stmt 1 view .LVU62
|
||||||
@ -658,7 +658,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
271 0032 6365 str r3, [r4, #84]
|
271 0032 6365 str r3, [r4, #84]
|
||||||
167:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** }
|
167:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** }
|
||||||
272 .loc 1 167 5 is_stmt 1 view .LVU79
|
272 .loc 1 167 5 is_stmt 1 view .LVU79
|
||||||
ARM GAS /tmp/ccyquBV4.s page 12
|
ARM GAS /tmp/ccs4q8w6.s page 12
|
||||||
|
|
||||||
|
|
||||||
167:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** }
|
167:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** }
|
||||||
@ -718,7 +718,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
191:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_HT_FLAG_INDEX(hdma));
|
191:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_HT_FLAG_INDEX(hdma));
|
||||||
312 .loc 1 191 5 is_stmt 0 discriminator 1 view .LVU95
|
312 .loc 1 191 5 is_stmt 0 discriminator 1 view .LVU95
|
||||||
313 0062 A2F58962 sub r2, r2, #1096
|
313 0062 A2F58962 sub r2, r2, #1096
|
||||||
ARM GAS /tmp/ccyquBV4.s page 13
|
ARM GAS /tmp/ccs4q8w6.s page 13
|
||||||
|
|
||||||
|
|
||||||
314 0066 9342 cmp r3, r2
|
314 0066 9342 cmp r3, r2
|
||||||
@ -778,7 +778,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
357 00ba 02F58062 add r2, r2, #1024
|
357 00ba 02F58062 add r2, r2, #1024
|
||||||
358 00be 9342 cmp r3, r2
|
358 00be 9342 cmp r3, r2
|
||||||
359 00c0 02D0 beq .L304
|
359 00c0 02D0 beq .L304
|
||||||
ARM GAS /tmp/ccyquBV4.s page 14
|
ARM GAS /tmp/ccs4q8w6.s page 14
|
||||||
|
|
||||||
|
|
||||||
191:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_HT_FLAG_INDEX(hdma));
|
191:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_HT_FLAG_INDEX(hdma));
|
||||||
@ -838,7 +838,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
404 011a A2F56872 sub r2, r2, #928
|
404 011a A2F56872 sub r2, r2, #928
|
||||||
405 011e 9342 cmp r3, r2
|
405 011e 9342 cmp r3, r2
|
||||||
406 0120 00F09A81 beq .L115
|
406 0120 00F09A81 beq .L115
|
||||||
ARM GAS /tmp/ccyquBV4.s page 15
|
ARM GAS /tmp/ccs4q8w6.s page 15
|
||||||
|
|
||||||
|
|
||||||
192:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_TE_FLAG_INDEX(hdma));
|
192:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_TE_FLAG_INDEX(hdma));
|
||||||
@ -898,7 +898,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
454 0180 4FF40012 mov r2, #2097152
|
454 0180 4FF40012 mov r2, #2097152
|
||||||
455 0184 A4E7 b .L19
|
455 0184 A4E7 b .L19
|
||||||
456 .L70:
|
456 .L70:
|
||||||
ARM GAS /tmp/ccyquBV4.s page 16
|
ARM GAS /tmp/ccs4q8w6.s page 16
|
||||||
|
|
||||||
|
|
||||||
457 0186 4FF40012 mov r2, #2097152
|
457 0186 4FF40012 mov r2, #2097152
|
||||||
@ -958,7 +958,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
501 01da 9342 cmp r3, r2
|
501 01da 9342 cmp r3, r2
|
||||||
502 01dc 27D0 beq .L81
|
502 01dc 27D0 beq .L81
|
||||||
191:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_HT_FLAG_INDEX(hdma));
|
191:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_HT_FLAG_INDEX(hdma));
|
||||||
ARM GAS /tmp/ccyquBV4.s page 17
|
ARM GAS /tmp/ccs4q8w6.s page 17
|
||||||
|
|
||||||
|
|
||||||
503 .loc 1 191 5 discriminator 69 view .LVU134
|
503 .loc 1 191 5 discriminator 69 view .LVU134
|
||||||
@ -1018,7 +1018,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
551 0228 4FF40062 mov r2, #2048
|
551 0228 4FF40062 mov r2, #2048
|
||||||
552 022c EAE7 b .L22
|
552 022c EAE7 b .L22
|
||||||
553 .L81:
|
553 .L81:
|
||||||
ARM GAS /tmp/ccyquBV4.s page 18
|
ARM GAS /tmp/ccs4q8w6.s page 18
|
||||||
|
|
||||||
|
|
||||||
554 022e 4FF40012 mov r2, #2097152
|
554 022e 4FF40012 mov r2, #2097152
|
||||||
@ -1078,7 +1078,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
191:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_HT_FLAG_INDEX(hdma));
|
191:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_HT_FLAG_INDEX(hdma));
|
||||||
599 .loc 1 191 5 discriminator 118 view .LVU150
|
599 .loc 1 191 5 discriminator 118 view .LVU150
|
||||||
600 0284 A2F58962 sub r2, r2, #1096
|
600 0284 A2F58962 sub r2, r2, #1096
|
||||||
ARM GAS /tmp/ccyquBV4.s page 19
|
ARM GAS /tmp/ccs4q8w6.s page 19
|
||||||
|
|
||||||
|
|
||||||
601 0288 9342 cmp r3, r2
|
601 0288 9342 cmp r3, r2
|
||||||
@ -1138,7 +1138,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
648 02d0 4FF40063 mov r3, #2048
|
648 02d0 4FF40063 mov r3, #2048
|
||||||
649 02d4 EDE7 b .L24
|
649 02d4 EDE7 b .L24
|
||||||
650 .L92:
|
650 .L92:
|
||||||
ARM GAS /tmp/ccyquBV4.s page 20
|
ARM GAS /tmp/ccs4q8w6.s page 20
|
||||||
|
|
||||||
|
|
||||||
651 02d6 4FF40063 mov r3, #2048
|
651 02d6 4FF40063 mov r3, #2048
|
||||||
@ -1198,7 +1198,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
698 0338 29D0 beq .L103
|
698 0338 29D0 beq .L103
|
||||||
191:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_HT_FLAG_INDEX(hdma));
|
191:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_HT_FLAG_INDEX(hdma));
|
||||||
699 .loc 1 191 5 discriminator 165 view .LVU165
|
699 .loc 1 191 5 discriminator 165 view .LVU165
|
||||||
ARM GAS /tmp/ccyquBV4.s page 21
|
ARM GAS /tmp/ccs4q8w6.s page 21
|
||||||
|
|
||||||
|
|
||||||
700 033a 02F58062 add r2, r2, #1024
|
700 033a 02F58062 add r2, r2, #1024
|
||||||
@ -1258,7 +1258,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
746 0382 4FF40063 mov r3, #2048
|
746 0382 4FF40063 mov r3, #2048
|
||||||
747 0386 F3E7 b .L25
|
747 0386 F3E7 b .L25
|
||||||
748 .L102:
|
748 .L102:
|
||||||
ARM GAS /tmp/ccyquBV4.s page 22
|
ARM GAS /tmp/ccs4q8w6.s page 22
|
||||||
|
|
||||||
|
|
||||||
749 0388 4FF40063 mov r3, #2048
|
749 0388 4FF40063 mov r3, #2048
|
||||||
@ -1318,7 +1318,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
796 03e0 02F58062 add r2, r2, #1024
|
796 03e0 02F58062 add r2, r2, #1024
|
||||||
797 03e4 9342 cmp r3, r2
|
797 03e4 9342 cmp r3, r2
|
||||||
798 03e6 00F0A281 beq .L160
|
798 03e6 00F0A281 beq .L160
|
||||||
ARM GAS /tmp/ccyquBV4.s page 23
|
ARM GAS /tmp/ccs4q8w6.s page 23
|
||||||
|
|
||||||
|
|
||||||
193:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_DME_FLAG_INDEX(hdma));
|
193:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_DME_FLAG_INDEX(hdma));
|
||||||
@ -1378,7 +1378,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
843 044a B3E7 b .L27
|
843 044a B3E7 b .L27
|
||||||
844 .L113:
|
844 .L113:
|
||||||
845 044c 4FF48062 mov r2, #1024
|
845 044c 4FF48062 mov r2, #1024
|
||||||
ARM GAS /tmp/ccyquBV4.s page 24
|
ARM GAS /tmp/ccs4q8w6.s page 24
|
||||||
|
|
||||||
|
|
||||||
846 0450 B0E7 b .L27
|
846 0450 B0E7 b .L27
|
||||||
@ -1438,7 +1438,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
893 04a8 2AD0 beq .L126
|
893 04a8 2AD0 beq .L126
|
||||||
192:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_TE_FLAG_INDEX(hdma));
|
192:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_TE_FLAG_INDEX(hdma));
|
||||||
894 .loc 1 192 5 discriminator 63 view .LVU198
|
894 .loc 1 192 5 discriminator 63 view .LVU198
|
||||||
ARM GAS /tmp/ccyquBV4.s page 25
|
ARM GAS /tmp/ccs4q8w6.s page 25
|
||||||
|
|
||||||
|
|
||||||
895 04aa A2F56872 sub r2, r2, #928
|
895 04aa A2F56872 sub r2, r2, #928
|
||||||
@ -1498,7 +1498,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
941 .L125:
|
941 .L125:
|
||||||
942 04fa 4FF48062 mov r2, #1024
|
942 04fa 4FF48062 mov r2, #1024
|
||||||
943 04fe F3E7 b .L30
|
943 04fe F3E7 b .L30
|
||||||
ARM GAS /tmp/ccyquBV4.s page 26
|
ARM GAS /tmp/ccs4q8w6.s page 26
|
||||||
|
|
||||||
|
|
||||||
944 .L126:
|
944 .L126:
|
||||||
@ -1558,7 +1558,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
192:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_TE_FLAG_INDEX(hdma));
|
192:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_TE_FLAG_INDEX(hdma));
|
||||||
991 .loc 1 192 5 discriminator 114 view .LVU214
|
991 .loc 1 192 5 discriminator 114 view .LVU214
|
||||||
992 0558 A2F56872 sub r2, r2, #928
|
992 0558 A2F56872 sub r2, r2, #928
|
||||||
ARM GAS /tmp/ccyquBV4.s page 27
|
ARM GAS /tmp/ccs4q8w6.s page 27
|
||||||
|
|
||||||
|
|
||||||
993 055c 9342 cmp r3, r2
|
993 055c 9342 cmp r3, r2
|
||||||
@ -1618,7 +1618,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
1039 05a8 4FF48063 mov r3, #1024
|
1039 05a8 4FF48063 mov r3, #1024
|
||||||
1040 05ac F3E7 b .L32
|
1040 05ac F3E7 b .L32
|
||||||
1041 .L138:
|
1041 .L138:
|
||||||
ARM GAS /tmp/ccyquBV4.s page 28
|
ARM GAS /tmp/ccs4q8w6.s page 28
|
||||||
|
|
||||||
|
|
||||||
1042 05ae 4FF48063 mov r3, #1024
|
1042 05ae 4FF48063 mov r3, #1024
|
||||||
@ -1678,7 +1678,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
1090 0610 02F58062 add r2, r2, #1024
|
1090 0610 02F58062 add r2, r2, #1024
|
||||||
1091 0614 9342 cmp r3, r2
|
1091 0614 9342 cmp r3, r2
|
||||||
1092 0616 2AD0 beq .L150
|
1092 0616 2AD0 beq .L150
|
||||||
ARM GAS /tmp/ccyquBV4.s page 29
|
ARM GAS /tmp/ccs4q8w6.s page 29
|
||||||
|
|
||||||
|
|
||||||
192:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_TE_FLAG_INDEX(hdma));
|
192:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_TE_FLAG_INDEX(hdma));
|
||||||
@ -1738,7 +1738,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
1138 0664 1023 movs r3, #16
|
1138 0664 1023 movs r3, #16
|
||||||
1139 0666 F6E7 b .L33
|
1139 0666 F6E7 b .L33
|
||||||
1140 .L149:
|
1140 .L149:
|
||||||
ARM GAS /tmp/ccyquBV4.s page 30
|
ARM GAS /tmp/ccs4q8w6.s page 30
|
||||||
|
|
||||||
|
|
||||||
1141 0668 4FF48063 mov r3, #1024
|
1141 0668 4FF48063 mov r3, #1024
|
||||||
@ -1798,7 +1798,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
194:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_FE_FLAG_INDEX(hdma));
|
194:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_FE_FLAG_INDEX(hdma));
|
||||||
1189 .loc 1 194 5 discriminator 7 view .LVU244
|
1189 .loc 1 194 5 discriminator 7 view .LVU244
|
||||||
1190 06c6 02F58062 add r2, r2, #1024
|
1190 06c6 02F58062 add r2, r2, #1024
|
||||||
ARM GAS /tmp/ccyquBV4.s page 31
|
ARM GAS /tmp/ccs4q8w6.s page 31
|
||||||
|
|
||||||
|
|
||||||
1191 06ca 9342 cmp r3, r2
|
1191 06ca 9342 cmp r3, r2
|
||||||
@ -1858,7 +1858,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
1235 .L160:
|
1235 .L160:
|
||||||
1236 072e 0822 movs r2, #8
|
1236 072e 0822 movs r2, #8
|
||||||
1237 0730 B3E7 b .L35
|
1237 0730 B3E7 b .L35
|
||||||
ARM GAS /tmp/ccyquBV4.s page 32
|
ARM GAS /tmp/ccs4q8w6.s page 32
|
||||||
|
|
||||||
|
|
||||||
1238 .L161:
|
1238 .L161:
|
||||||
@ -1918,7 +1918,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
1285 0788 02F58062 add r2, r2, #1024
|
1285 0788 02F58062 add r2, r2, #1024
|
||||||
1286 078c 9342 cmp r3, r2
|
1286 078c 9342 cmp r3, r2
|
||||||
1287 078e 2AD0 beq .L174
|
1287 078e 2AD0 beq .L174
|
||||||
ARM GAS /tmp/ccyquBV4.s page 33
|
ARM GAS /tmp/ccs4q8w6.s page 33
|
||||||
|
|
||||||
|
|
||||||
193:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_DME_FLAG_INDEX(hdma));
|
193:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_DME_FLAG_INDEX(hdma));
|
||||||
@ -1978,7 +1978,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
1333 07dc 0822 movs r2, #8
|
1333 07dc 0822 movs r2, #8
|
||||||
1334 07de F6E7 b .L38
|
1334 07de F6E7 b .L38
|
||||||
1335 .L173:
|
1335 .L173:
|
||||||
ARM GAS /tmp/ccyquBV4.s page 34
|
ARM GAS /tmp/ccs4q8w6.s page 34
|
||||||
|
|
||||||
|
|
||||||
1336 07e0 4FF40072 mov r2, #512
|
1336 07e0 4FF40072 mov r2, #512
|
||||||
@ -2038,7 +2038,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
1383 083a 9342 cmp r3, r2
|
1383 083a 9342 cmp r3, r2
|
||||||
1384 083c 2AD0 beq .L186
|
1384 083c 2AD0 beq .L186
|
||||||
193:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_DME_FLAG_INDEX(hdma));
|
193:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_DME_FLAG_INDEX(hdma));
|
||||||
ARM GAS /tmp/ccyquBV4.s page 35
|
ARM GAS /tmp/ccs4q8w6.s page 35
|
||||||
|
|
||||||
|
|
||||||
1385 .loc 1 193 5 discriminator 114 view .LVU278
|
1385 .loc 1 193 5 discriminator 114 view .LVU278
|
||||||
@ -2098,7 +2098,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
1431 088c F6E7 b .L40
|
1431 088c F6E7 b .L40
|
||||||
1432 .L185:
|
1432 .L185:
|
||||||
1433 088e 4FF40073 mov r3, #512
|
1433 088e 4FF40073 mov r3, #512
|
||||||
ARM GAS /tmp/ccyquBV4.s page 36
|
ARM GAS /tmp/ccs4q8w6.s page 36
|
||||||
|
|
||||||
|
|
||||||
1434 0892 F3E7 b .L40
|
1434 0892 F3E7 b .L40
|
||||||
@ -2158,7 +2158,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
193:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_DME_FLAG_INDEX(hdma));
|
193:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_DME_FLAG_INDEX(hdma));
|
||||||
1483 .loc 1 193 5 discriminator 161 view .LVU292
|
1483 .loc 1 193 5 discriminator 161 view .LVU292
|
||||||
1484 08f8 02F58062 add r2, r2, #1024
|
1484 08f8 02F58062 add r2, r2, #1024
|
||||||
ARM GAS /tmp/ccyquBV4.s page 37
|
ARM GAS /tmp/ccs4q8w6.s page 37
|
||||||
|
|
||||||
|
|
||||||
1485 08fc 9342 cmp r3, r2
|
1485 08fc 9342 cmp r3, r2
|
||||||
@ -2218,7 +2218,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
1530 094a F8E7 b .L41
|
1530 094a F8E7 b .L41
|
||||||
1531 .L196:
|
1531 .L196:
|
||||||
1532 094c 0823 movs r3, #8
|
1532 094c 0823 movs r3, #8
|
||||||
ARM GAS /tmp/ccyquBV4.s page 38
|
ARM GAS /tmp/ccs4q8w6.s page 38
|
||||||
|
|
||||||
|
|
||||||
1533 094e F6E7 b .L41
|
1533 094e F6E7 b .L41
|
||||||
@ -2278,7 +2278,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
1581 09a8 9342 cmp r3, r2
|
1581 09a8 9342 cmp r3, r2
|
||||||
1582 09aa 00F07D81 beq .L255
|
1582 09aa 00F07D81 beq .L255
|
||||||
195:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c ****
|
195:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c ****
|
||||||
ARM GAS /tmp/ccyquBV4.s page 39
|
ARM GAS /tmp/ccs4q8w6.s page 39
|
||||||
|
|
||||||
|
|
||||||
1583 .loc 1 195 5 discriminator 7 view .LVU308
|
1583 .loc 1 195 5 discriminator 7 view .LVU308
|
||||||
@ -2338,7 +2338,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
1627 0a12 0422 movs r2, #4
|
1627 0a12 0422 movs r2, #4
|
||||||
1628 0a14 B5E7 b .L43
|
1628 0a14 B5E7 b .L43
|
||||||
1629 .L208:
|
1629 .L208:
|
||||||
ARM GAS /tmp/ccyquBV4.s page 40
|
ARM GAS /tmp/ccs4q8w6.s page 40
|
||||||
|
|
||||||
|
|
||||||
1630 0a16 0422 movs r2, #4
|
1630 0a16 0422 movs r2, #4
|
||||||
@ -2398,7 +2398,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
194:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_FE_FLAG_INDEX(hdma));
|
194:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_FE_FLAG_INDEX(hdma));
|
||||||
1678 .loc 1 194 5 discriminator 61 view .LVU325
|
1678 .loc 1 194 5 discriminator 61 view .LVU325
|
||||||
1679 0a70 02F58062 add r2, r2, #1024
|
1679 0a70 02F58062 add r2, r2, #1024
|
||||||
ARM GAS /tmp/ccyquBV4.s page 41
|
ARM GAS /tmp/ccs4q8w6.s page 41
|
||||||
|
|
||||||
|
|
||||||
1680 0a74 9342 cmp r3, r2
|
1680 0a74 9342 cmp r3, r2
|
||||||
@ -2458,7 +2458,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
1725 0ac2 F8E7 b .L46
|
1725 0ac2 F8E7 b .L46
|
||||||
1726 .L220:
|
1726 .L220:
|
||||||
1727 0ac4 0422 movs r2, #4
|
1727 0ac4 0422 movs r2, #4
|
||||||
ARM GAS /tmp/ccyquBV4.s page 42
|
ARM GAS /tmp/ccs4q8w6.s page 42
|
||||||
|
|
||||||
|
|
||||||
1728 0ac6 F6E7 b .L46
|
1728 0ac6 F6E7 b .L46
|
||||||
@ -2518,7 +2518,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
1775 .loc 1 194 5 discriminator 112 view .LVU341
|
1775 .loc 1 194 5 discriminator 112 view .LVU341
|
||||||
1776 0b1e 02F58062 add r2, r2, #1024
|
1776 0b1e 02F58062 add r2, r2, #1024
|
||||||
1777 0b22 9342 cmp r3, r2
|
1777 0b22 9342 cmp r3, r2
|
||||||
ARM GAS /tmp/ccyquBV4.s page 43
|
ARM GAS /tmp/ccs4q8w6.s page 43
|
||||||
|
|
||||||
|
|
||||||
1778 0b24 2AD0 beq .L234
|
1778 0b24 2AD0 beq .L234
|
||||||
@ -2578,7 +2578,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
1823 .L232:
|
1823 .L232:
|
||||||
1824 0b72 0423 movs r3, #4
|
1824 0b72 0423 movs r3, #4
|
||||||
1825 0b74 F6E7 b .L48
|
1825 0b74 F6E7 b .L48
|
||||||
ARM GAS /tmp/ccyquBV4.s page 44
|
ARM GAS /tmp/ccs4q8w6.s page 44
|
||||||
|
|
||||||
|
|
||||||
1826 .L233:
|
1826 .L233:
|
||||||
@ -2638,7 +2638,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
1875 0bdc 9342 cmp r3, r2
|
1875 0bdc 9342 cmp r3, r2
|
||||||
1876 0bde 2BD0 beq .L245
|
1876 0bde 2BD0 beq .L245
|
||||||
194:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_FE_FLAG_INDEX(hdma));
|
194:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** __HAL_DMA_CLEAR_FLAG (hdma, __HAL_DMA_GET_FE_FLAG_INDEX(hdma));
|
||||||
ARM GAS /tmp/ccyquBV4.s page 45
|
ARM GAS /tmp/ccs4q8w6.s page 45
|
||||||
|
|
||||||
|
|
||||||
1877 .loc 1 194 5 discriminator 161 view .LVU356
|
1877 .loc 1 194 5 discriminator 161 view .LVU356
|
||||||
@ -2698,7 +2698,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
1922 .L243:
|
1922 .L243:
|
||||||
1923 0c30 0423 movs r3, #4
|
1923 0c30 0423 movs r3, #4
|
||||||
1924 0c32 F8E7 b .L49
|
1924 0c32 F8E7 b .L49
|
||||||
ARM GAS /tmp/ccyquBV4.s page 46
|
ARM GAS /tmp/ccs4q8w6.s page 46
|
||||||
|
|
||||||
|
|
||||||
1925 .L244:
|
1925 .L244:
|
||||||
@ -2758,7 +2758,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
1971 0c7a 5369 ldr r3, [r2, #20]
|
1971 0c7a 5369 ldr r3, [r2, #20]
|
||||||
1972 0c7c 43F08003 orr r3, r3, #128
|
1972 0c7c 43F08003 orr r3, r3, #128
|
||||||
1973 0c80 5361 str r3, [r2, #20]
|
1973 0c80 5361 str r3, [r2, #20]
|
||||||
ARM GAS /tmp/ccyquBV4.s page 47
|
ARM GAS /tmp/ccs4q8w6.s page 47
|
||||||
|
|
||||||
|
|
||||||
201:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** {
|
201:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** {
|
||||||
@ -2818,7 +2818,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
2019 .L261:
|
2019 .L261:
|
||||||
2020 0cc0 4FF48032 mov r2, #65536
|
2020 0cc0 4FF48032 mov r2, #65536
|
||||||
2021 0cc4 D1E7 b .L51
|
2021 0cc4 D1E7 b .L51
|
||||||
ARM GAS /tmp/ccyquBV4.s page 48
|
ARM GAS /tmp/ccs4q8w6.s page 48
|
||||||
|
|
||||||
|
|
||||||
2022 .L262:
|
2022 .L262:
|
||||||
@ -2878,7 +2878,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
2066 0d16 A2F58962 sub r2, r2, #1096
|
2066 0d16 A2F58962 sub r2, r2, #1096
|
||||||
2067 0d1a 9342 cmp r3, r2
|
2067 0d1a 9342 cmp r3, r2
|
||||||
2068 0d1c 23D0 beq .L273
|
2068 0d1c 23D0 beq .L273
|
||||||
ARM GAS /tmp/ccyquBV4.s page 49
|
ARM GAS /tmp/ccs4q8w6.s page 49
|
||||||
|
|
||||||
|
|
||||||
195:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c ****
|
195:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c ****
|
||||||
@ -2938,7 +2938,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
2117 0d66 4FF48032 mov r2, #65536
|
2117 0d66 4FF48032 mov r2, #65536
|
||||||
2118 0d6a EBE7 b .L54
|
2118 0d6a EBE7 b .L54
|
||||||
2119 .L274:
|
2119 .L274:
|
||||||
ARM GAS /tmp/ccyquBV4.s page 50
|
ARM GAS /tmp/ccs4q8w6.s page 50
|
||||||
|
|
||||||
|
|
||||||
2120 0d6c 4FF48032 mov r2, #65536
|
2120 0d6c 4FF48032 mov r2, #65536
|
||||||
@ -2998,7 +2998,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
2164 0dc0 9342 cmp r3, r2
|
2164 0dc0 9342 cmp r3, r2
|
||||||
2165 0dc2 23D0 beq .L285
|
2165 0dc2 23D0 beq .L285
|
||||||
195:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c ****
|
195:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c ****
|
||||||
ARM GAS /tmp/ccyquBV4.s page 51
|
ARM GAS /tmp/ccs4q8w6.s page 51
|
||||||
|
|
||||||
|
|
||||||
2166 .loc 1 195 5 discriminator 120 view .LVU409
|
2166 .loc 1 195 5 discriminator 120 view .LVU409
|
||||||
@ -3058,7 +3058,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
2215 0e10 EBE7 b .L56
|
2215 0e10 EBE7 b .L56
|
||||||
2216 .L286:
|
2216 .L286:
|
||||||
2217 0e12 4FF48033 mov r3, #65536
|
2217 0e12 4FF48033 mov r3, #65536
|
||||||
ARM GAS /tmp/ccyquBV4.s page 52
|
ARM GAS /tmp/ccs4q8w6.s page 52
|
||||||
|
|
||||||
|
|
||||||
2218 0e16 E8E7 b .L56
|
2218 0e16 E8E7 b .L56
|
||||||
@ -3118,7 +3118,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
2263 .loc 1 195 5 discriminator 167 view .LVU423
|
2263 .loc 1 195 5 discriminator 167 view .LVU423
|
||||||
2264 0e72 A2F58962 sub r2, r2, #1096
|
2264 0e72 A2F58962 sub r2, r2, #1096
|
||||||
2265 0e76 9342 cmp r3, r2
|
2265 0e76 9342 cmp r3, r2
|
||||||
ARM GAS /tmp/ccyquBV4.s page 53
|
ARM GAS /tmp/ccs4q8w6.s page 53
|
||||||
|
|
||||||
|
|
||||||
2266 0e78 23D0 beq .L297
|
2266 0e78 23D0 beq .L297
|
||||||
@ -3178,7 +3178,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
2314 .L297:
|
2314 .L297:
|
||||||
2315 0ec2 4FF48033 mov r3, #65536
|
2315 0ec2 4FF48033 mov r3, #65536
|
||||||
2316 0ec6 EBE7 b .L57
|
2316 0ec6 EBE7 b .L57
|
||||||
ARM GAS /tmp/ccyquBV4.s page 54
|
ARM GAS /tmp/ccs4q8w6.s page 54
|
||||||
|
|
||||||
|
|
||||||
2317 .L298:
|
2317 .L298:
|
||||||
@ -3238,7 +3238,7 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
239:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** }
|
239:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c **** }
|
||||||
2365 .loc 1 239 26 view .LVU438
|
2365 .loc 1 239 26 view .LVU438
|
||||||
2366 0004 D960 str r1, [r3, #12]
|
2366 0004 D960 str r1, [r3, #12]
|
||||||
ARM GAS /tmp/ccyquBV4.s page 55
|
ARM GAS /tmp/ccs4q8w6.s page 55
|
||||||
|
|
||||||
|
|
||||||
2367 .L339:
|
2367 .L339:
|
||||||
@ -3271,29 +3271,29 @@ ARM GAS /tmp/ccyquBV4.s page 1
|
|||||||
2389 .file 4 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h"
|
2389 .file 4 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h"
|
||||||
2390 .file 5 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma.h"
|
2390 .file 5 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma.h"
|
||||||
2391 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma_ex.h"
|
2391 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma_ex.h"
|
||||||
ARM GAS /tmp/ccyquBV4.s page 56
|
ARM GAS /tmp/ccs4q8w6.s page 56
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 stm32f7xx_hal_dma_ex.c
|
*ABS*:0000000000000000 stm32f7xx_hal_dma_ex.c
|
||||||
/tmp/ccyquBV4.s:17 .text.DMA_MultiBufferSetConfig:0000000000000000 $t
|
/tmp/ccs4q8w6.s:17 .text.DMA_MultiBufferSetConfig:0000000000000000 $t
|
||||||
/tmp/ccyquBV4.s:24 .text.DMA_MultiBufferSetConfig:0000000000000000 DMA_MultiBufferSetConfig
|
/tmp/ccs4q8w6.s:24 .text.DMA_MultiBufferSetConfig:0000000000000000 DMA_MultiBufferSetConfig
|
||||||
/tmp/ccyquBV4.s:88 .text.HAL_DMAEx_MultiBufferStart:0000000000000000 $t
|
/tmp/ccs4q8w6.s:88 .text.HAL_DMAEx_MultiBufferStart:0000000000000000 $t
|
||||||
/tmp/ccyquBV4.s:95 .text.HAL_DMAEx_MultiBufferStart:0000000000000000 HAL_DMAEx_MultiBufferStart
|
/tmp/ccs4q8w6.s:95 .text.HAL_DMAEx_MultiBufferStart:0000000000000000 HAL_DMAEx_MultiBufferStart
|
||||||
/tmp/ccyquBV4.s:200 .text.HAL_DMAEx_MultiBufferStart_IT:0000000000000000 $t
|
/tmp/ccs4q8w6.s:200 .text.HAL_DMAEx_MultiBufferStart_IT:0000000000000000 $t
|
||||||
/tmp/ccyquBV4.s:207 .text.HAL_DMAEx_MultiBufferStart_IT:0000000000000000 HAL_DMAEx_MultiBufferStart_IT
|
/tmp/ccs4q8w6.s:207 .text.HAL_DMAEx_MultiBufferStart_IT:0000000000000000 HAL_DMAEx_MultiBufferStart_IT
|
||||||
/tmp/ccyquBV4.s:665 .text.HAL_DMAEx_MultiBufferStart_IT:00000000000002f0 $d
|
/tmp/ccs4q8w6.s:665 .text.HAL_DMAEx_MultiBufferStart_IT:00000000000002f0 $d
|
||||||
/tmp/ccyquBV4.s:672 .text.HAL_DMAEx_MultiBufferStart_IT:0000000000000304 $t
|
/tmp/ccs4q8w6.s:672 .text.HAL_DMAEx_MultiBufferStart_IT:0000000000000304 $t
|
||||||
/tmp/ccyquBV4.s:1059 .text.HAL_DMAEx_MultiBufferStart_IT:00000000000005cc $d
|
/tmp/ccs4q8w6.s:1059 .text.HAL_DMAEx_MultiBufferStart_IT:00000000000005cc $d
|
||||||
/tmp/ccyquBV4.s:1066 .text.HAL_DMAEx_MultiBufferStart_IT:00000000000005e4 $t
|
/tmp/ccs4q8w6.s:1066 .text.HAL_DMAEx_MultiBufferStart_IT:00000000000005e4 $t
|
||||||
/tmp/ccyquBV4.s:1453 .text.HAL_DMAEx_MultiBufferStart_IT:00000000000008b4 $d
|
/tmp/ccs4q8w6.s:1453 .text.HAL_DMAEx_MultiBufferStart_IT:00000000000008b4 $d
|
||||||
/tmp/ccyquBV4.s:1460 .text.HAL_DMAEx_MultiBufferStart_IT:00000000000008cc $t
|
/tmp/ccs4q8w6.s:1460 .text.HAL_DMAEx_MultiBufferStart_IT:00000000000008cc $t
|
||||||
/tmp/ccyquBV4.s:1847 .text.HAL_DMAEx_MultiBufferStart_IT:0000000000000b9c $d
|
/tmp/ccs4q8w6.s:1847 .text.HAL_DMAEx_MultiBufferStart_IT:0000000000000b9c $d
|
||||||
/tmp/ccyquBV4.s:1854 .text.HAL_DMAEx_MultiBufferStart_IT:0000000000000bb4 $t
|
/tmp/ccs4q8w6.s:1854 .text.HAL_DMAEx_MultiBufferStart_IT:0000000000000bb4 $t
|
||||||
/tmp/ccyquBV4.s:2225 .text.HAL_DMAEx_MultiBufferStart_IT:0000000000000e20 $d
|
/tmp/ccs4q8w6.s:2225 .text.HAL_DMAEx_MultiBufferStart_IT:0000000000000e20 $d
|
||||||
/tmp/ccyquBV4.s:2232 .text.HAL_DMAEx_MultiBufferStart_IT:0000000000000e34 $t
|
/tmp/ccs4q8w6.s:2232 .text.HAL_DMAEx_MultiBufferStart_IT:0000000000000e34 $t
|
||||||
/tmp/ccyquBV4.s:2338 .text.HAL_DMAEx_MultiBufferStart_IT:0000000000000ee4 $d
|
/tmp/ccs4q8w6.s:2338 .text.HAL_DMAEx_MultiBufferStart_IT:0000000000000ee4 $d
|
||||||
/tmp/ccyquBV4.s:2344 .text.HAL_DMAEx_ChangeMemory:0000000000000000 $t
|
/tmp/ccs4q8w6.s:2344 .text.HAL_DMAEx_ChangeMemory:0000000000000000 $t
|
||||||
/tmp/ccyquBV4.s:2351 .text.HAL_DMAEx_ChangeMemory:0000000000000000 HAL_DMAEx_ChangeMemory
|
/tmp/ccs4q8w6.s:2351 .text.HAL_DMAEx_ChangeMemory:0000000000000000 HAL_DMAEx_ChangeMemory
|
||||||
|
|
||||||
NO UNDEFINED SYMBOLS
|
NO UNDEFINED SYMBOLS
|
||||||
|
|||||||
Binary file not shown.
@ -29,7 +29,9 @@ build/stm32f7xx_hal_exti.o: \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
||||||
Inc/stm32f7xx_hal_conf.h:
|
Inc/stm32f7xx_hal_conf.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
||||||
@ -62,3 +64,5 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/ccTKBm5t.s page 1
|
ARM GAS /tmp/ccMMPL4p.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
28:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c ****
|
28:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c ****
|
||||||
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** (+) Exti line can be configured in 3 different modes
|
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** (+) Exti line can be configured in 3 different modes
|
||||||
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** (++) Interrupt
|
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** (++) Interrupt
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 2
|
ARM GAS /tmp/ccMMPL4p.s page 2
|
||||||
|
|
||||||
|
|
||||||
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** (++) Event
|
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** (++) Event
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
85:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** /* Includes ------------------------------------------------------------------*/
|
85:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** /* Includes ------------------------------------------------------------------*/
|
||||||
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** #include "stm32f7xx_hal.h"
|
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** #include "stm32f7xx_hal.h"
|
||||||
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c ****
|
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c ****
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 3
|
ARM GAS /tmp/ccMMPL4p.s page 3
|
||||||
|
|
||||||
|
|
||||||
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** /** @addtogroup STM32F7xx_HAL_Driver
|
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** /** @addtogroup STM32F7xx_HAL_Driver
|
||||||
@ -178,7 +178,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
142:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** HAL_StatusTypeDef HAL_EXTI_SetConfigLine(EXTI_HandleTypeDef *hexti, EXTI_ConfigTypeDef *pExtiConfig
|
142:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** HAL_StatusTypeDef HAL_EXTI_SetConfigLine(EXTI_HandleTypeDef *hexti, EXTI_ConfigTypeDef *pExtiConfig
|
||||||
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** {
|
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** {
|
||||||
29 .loc 1 143 1 view -0
|
29 .loc 1 143 1 view -0
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 4
|
ARM GAS /tmp/ccMMPL4p.s page 4
|
||||||
|
|
||||||
|
|
||||||
30 .cfi_startproc
|
30 .cfi_startproc
|
||||||
@ -238,7 +238,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
63 .loc 1 163 3 is_stmt 1 view .LVU14
|
63 .loc 1 163 3 is_stmt 1 view .LVU14
|
||||||
64 .loc 1 163 12 is_stmt 0 view .LVU15
|
64 .loc 1 163 12 is_stmt 0 view .LVU15
|
||||||
65 0014 0122 movs r2, #1
|
65 0014 0122 movs r2, #1
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 5
|
ARM GAS /tmp/ccMMPL4p.s page 5
|
||||||
|
|
||||||
|
|
||||||
66 0016 8240 lsls r2, r2, r0
|
66 0016 8240 lsls r2, r2, r0
|
||||||
@ -298,7 +298,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
98 .L7:
|
98 .L7:
|
||||||
186:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** }
|
186:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** }
|
||||||
187:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** else
|
187:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** else
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 6
|
ARM GAS /tmp/ccMMPL4p.s page 6
|
||||||
|
|
||||||
|
|
||||||
188:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** {
|
188:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** {
|
||||||
@ -358,7 +358,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
121 .loc 1 219 3 is_stmt 1 view .LVU37
|
121 .loc 1 219 3 is_stmt 1 view .LVU37
|
||||||
122 .loc 1 219 19 is_stmt 0 view .LVU38
|
122 .loc 1 219 19 is_stmt 0 view .LVU38
|
||||||
123 005a 5B68 ldr r3, [r3, #4]
|
123 005a 5B68 ldr r3, [r3, #4]
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 7
|
ARM GAS /tmp/ccMMPL4p.s page 7
|
||||||
|
|
||||||
|
|
||||||
124 .LVL5:
|
124 .LVL5:
|
||||||
@ -418,7 +418,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
164 0080 24EA0204 bic r4, r4, r2
|
164 0080 24EA0204 bic r4, r4, r2
|
||||||
165 0084 EC60 str r4, [r5, #12]
|
165 0084 EC60 str r4, [r5, #12]
|
||||||
166 0086 DAE7 b .L7
|
166 0086 DAE7 b .L7
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 8
|
ARM GAS /tmp/ccMMPL4p.s page 8
|
||||||
|
|
||||||
|
|
||||||
167 .L16:
|
167 .L16:
|
||||||
@ -478,7 +478,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
214:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** }
|
214:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** }
|
||||||
205 .loc 1 214 15 is_stmt 0 view .LVU65
|
205 .loc 1 214 15 is_stmt 0 view .LVU65
|
||||||
206 00ae 0748 ldr r0, .L17
|
206 00ae 0748 ldr r0, .L17
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 9
|
ARM GAS /tmp/ccMMPL4p.s page 9
|
||||||
|
|
||||||
|
|
||||||
207 00b0 0168 ldr r1, [r0]
|
207 00b0 0168 ldr r1, [r0]
|
||||||
@ -538,7 +538,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
233:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** * @param hexti Exti handle.
|
233:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** * @param hexti Exti handle.
|
||||||
234:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** * @param pExtiConfig Pointer on structure to store Exti configuration.
|
234:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** * @param pExtiConfig Pointer on structure to store Exti configuration.
|
||||||
235:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** * @retval HAL Status.
|
235:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** * @retval HAL Status.
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 10
|
ARM GAS /tmp/ccMMPL4p.s page 10
|
||||||
|
|
||||||
|
|
||||||
236:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** */
|
236:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** */
|
||||||
@ -598,7 +598,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
286 .loc 1 257 12 is_stmt 0 view .LVU86
|
286 .loc 1 257 12 is_stmt 0 view .LVU86
|
||||||
287 0014 0122 movs r2, #1
|
287 0014 0122 movs r2, #1
|
||||||
288 0016 02FA0CF2 lsl r2, r2, ip
|
288 0016 02FA0CF2 lsl r2, r2, ip
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 11
|
ARM GAS /tmp/ccMMPL4p.s page 11
|
||||||
|
|
||||||
|
|
||||||
289 .LVL20:
|
289 .LVL20:
|
||||||
@ -658,7 +658,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
321 0036 0021 movs r1, #0
|
321 0036 0021 movs r1, #0
|
||||||
322 0038 9960 str r1, [r3, #8]
|
322 0038 9960 str r1, [r3, #8]
|
||||||
280:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** pExtiConfig->GPIOSel = 0x00u;
|
280:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** pExtiConfig->GPIOSel = 0x00u;
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 12
|
ARM GAS /tmp/ccMMPL4p.s page 12
|
||||||
|
|
||||||
|
|
||||||
323 .loc 1 280 3 is_stmt 1 view .LVU101
|
323 .loc 1 280 3 is_stmt 1 view .LVU101
|
||||||
@ -718,7 +718,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
358 .loc 1 299 28 is_stmt 0 view .LVU117
|
358 .loc 1 299 28 is_stmt 0 view .LVU117
|
||||||
359 005e 04F0C062 and r2, r4, #100663296
|
359 005e 04F0C062 and r2, r4, #100663296
|
||||||
360 .loc 1 299 8 view .LVU118
|
360 .loc 1 299 8 view .LVU118
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 13
|
ARM GAS /tmp/ccMMPL4p.s page 13
|
||||||
|
|
||||||
|
|
||||||
361 0062 B2F1C06F cmp r2, #100663296
|
361 0062 B2F1C06F cmp r2, #100663296
|
||||||
@ -778,7 +778,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
394 0088 02F00F02 and r2, r2, #15
|
394 0088 02F00F02 and r2, r2, #15
|
||||||
304:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** }
|
304:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** }
|
||||||
395 .loc 1 304 28 view .LVU132
|
395 .loc 1 304 28 view .LVU132
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 14
|
ARM GAS /tmp/ccMMPL4p.s page 14
|
||||||
|
|
||||||
|
|
||||||
396 008c DA60 str r2, [r3, #12]
|
396 008c DA60 str r2, [r3, #12]
|
||||||
@ -838,7 +838,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
315:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** */
|
315:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** */
|
||||||
316:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** HAL_StatusTypeDef HAL_EXTI_ClearConfigLine(EXTI_HandleTypeDef *hexti)
|
316:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** HAL_StatusTypeDef HAL_EXTI_ClearConfigLine(EXTI_HandleTypeDef *hexti)
|
||||||
317:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** {
|
317:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** {
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 15
|
ARM GAS /tmp/ccMMPL4p.s page 15
|
||||||
|
|
||||||
|
|
||||||
444 .loc 1 317 1 is_stmt 1 view -0
|
444 .loc 1 317 1 is_stmt 1 view -0
|
||||||
@ -898,7 +898,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
478 .loc 1 336 28 view .LVU153
|
478 .loc 1 336 28 view .LVU153
|
||||||
479 0016 6FEA030E mvn lr, r3
|
479 0016 6FEA030E mvn lr, r3
|
||||||
480 .loc 1 336 26 view .LVU154
|
480 .loc 1 336 26 view .LVU154
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 16
|
ARM GAS /tmp/ccMMPL4p.s page 16
|
||||||
|
|
||||||
|
|
||||||
481 001a 21EA0301 bic r1, r1, r3
|
481 001a 21EA0301 bic r1, r1, r3
|
||||||
@ -958,7 +958,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
352:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** regval = SYSCFG->EXTICR[linepos >> 2u];
|
352:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** regval = SYSCFG->EXTICR[linepos >> 2u];
|
||||||
353:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** regval &= ~(SYSCFG_EXTICR1_EXTI0 << (SYSCFG_EXTICR1_EXTI1_Pos * (linepos & 0x03u)));
|
353:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** regval &= ~(SYSCFG_EXTICR1_EXTI0 << (SYSCFG_EXTICR1_EXTI1_Pos * (linepos & 0x03u)));
|
||||||
354:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** SYSCFG->EXTICR[linepos >> 2u] = regval;
|
354:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** SYSCFG->EXTICR[linepos >> 2u] = regval;
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 17
|
ARM GAS /tmp/ccMMPL4p.s page 17
|
||||||
|
|
||||||
|
|
||||||
355:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** }
|
355:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** }
|
||||||
@ -1018,7 +1018,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
559 .cfi_restore 4
|
559 .cfi_restore 4
|
||||||
560 .cfi_restore 14
|
560 .cfi_restore 14
|
||||||
325:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** }
|
325:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** }
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 18
|
ARM GAS /tmp/ccMMPL4p.s page 18
|
||||||
|
|
||||||
|
|
||||||
561 .loc 1 325 12 view .LVU189
|
561 .loc 1 325 12 view .LVU189
|
||||||
@ -1078,7 +1078,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
371:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** HAL_StatusTypeDef status = HAL_OK;
|
371:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** HAL_StatusTypeDef status = HAL_OK;
|
||||||
604 .loc 1 371 3 is_stmt 1 view .LVU195
|
604 .loc 1 371 3 is_stmt 1 view .LVU195
|
||||||
605 .LVL47:
|
605 .LVL47:
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 19
|
ARM GAS /tmp/ccMMPL4p.s page 19
|
||||||
|
|
||||||
|
|
||||||
372:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c ****
|
372:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c ****
|
||||||
@ -1138,7 +1138,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
638 .cfi_startproc
|
638 .cfi_startproc
|
||||||
639 @ args = 0, pretend = 0, frame = 0
|
639 @ args = 0, pretend = 0, frame = 0
|
||||||
640 @ frame_needed = 0, uses_anonymous_args = 0
|
640 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 20
|
ARM GAS /tmp/ccMMPL4p.s page 20
|
||||||
|
|
||||||
|
|
||||||
641 @ link register save eliminated.
|
641 @ link register save eliminated.
|
||||||
@ -1198,7 +1198,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
416:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c ****
|
416:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c ****
|
||||||
417:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** /** @addtogroup EXTI_Exported_Functions_Group2
|
417:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** /** @addtogroup EXTI_Exported_Functions_Group2
|
||||||
418:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** * @brief EXTI IO functions.
|
418:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** * @brief EXTI IO functions.
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 21
|
ARM GAS /tmp/ccMMPL4p.s page 21
|
||||||
|
|
||||||
|
|
||||||
419:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** *
|
419:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** *
|
||||||
@ -1258,7 +1258,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
704 0010 1A42 tst r2, r3
|
704 0010 1A42 tst r2, r3
|
||||||
705 0012 04D0 beq .L54
|
705 0012 04D0 beq .L54
|
||||||
445:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** {
|
445:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** {
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 22
|
ARM GAS /tmp/ccMMPL4p.s page 22
|
||||||
|
|
||||||
|
|
||||||
446:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** /* Clear pending bit */
|
446:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** /* Clear pending bit */
|
||||||
@ -1318,7 +1318,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
466:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** uint32_t HAL_EXTI_GetPending(EXTI_HandleTypeDef *hexti, uint32_t Edge)
|
466:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** uint32_t HAL_EXTI_GetPending(EXTI_HandleTypeDef *hexti, uint32_t Edge)
|
||||||
467:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** {
|
467:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** {
|
||||||
742 .loc 1 467 1 is_stmt 1 view -0
|
742 .loc 1 467 1 is_stmt 1 view -0
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 23
|
ARM GAS /tmp/ccMMPL4p.s page 23
|
||||||
|
|
||||||
|
|
||||||
743 .cfi_startproc
|
743 .cfi_startproc
|
||||||
@ -1378,7 +1378,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
780 0014 7047 bx lr
|
780 0014 7047 bx lr
|
||||||
781 .L61:
|
781 .L61:
|
||||||
782 0016 00BF .align 2
|
782 0016 00BF .align 2
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 24
|
ARM GAS /tmp/ccMMPL4p.s page 24
|
||||||
|
|
||||||
|
|
||||||
783 .L60:
|
783 .L60:
|
||||||
@ -1438,7 +1438,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
507:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** /* Clear Pending bit */
|
507:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** /* Clear Pending bit */
|
||||||
508:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** EXTI->PR = maskline;
|
508:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** EXTI->PR = maskline;
|
||||||
817 .loc 1 508 3 is_stmt 1 view .LVU264
|
817 .loc 1 508 3 is_stmt 1 view .LVU264
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 25
|
ARM GAS /tmp/ccMMPL4p.s page 25
|
||||||
|
|
||||||
|
|
||||||
818 .loc 1 508 12 is_stmt 0 view .LVU265
|
818 .loc 1 508 12 is_stmt 0 view .LVU265
|
||||||
@ -1498,7 +1498,7 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
857 .LVL70:
|
857 .LVL70:
|
||||||
526:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c ****
|
526:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c ****
|
||||||
527:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** /* Generate Software interrupt */
|
527:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** /* Generate Software interrupt */
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 26
|
ARM GAS /tmp/ccMMPL4p.s page 26
|
||||||
|
|
||||||
|
|
||||||
528:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** EXTI->SWIER = maskline;
|
528:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c **** EXTI->SWIER = maskline;
|
||||||
@ -1521,35 +1521,35 @@ ARM GAS /tmp/ccTKBm5t.s page 1
|
|||||||
874 .file 3 "/usr/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h"
|
874 .file 3 "/usr/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h"
|
||||||
875 .file 4 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h"
|
875 .file 4 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h"
|
||||||
876 .file 5 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_exti.h"
|
876 .file 5 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_exti.h"
|
||||||
ARM GAS /tmp/ccTKBm5t.s page 27
|
ARM GAS /tmp/ccMMPL4p.s page 27
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 stm32f7xx_hal_exti.c
|
*ABS*:0000000000000000 stm32f7xx_hal_exti.c
|
||||||
/tmp/ccTKBm5t.s:17 .text.HAL_EXTI_SetConfigLine:0000000000000000 $t
|
/tmp/ccMMPL4p.s:17 .text.HAL_EXTI_SetConfigLine:0000000000000000 $t
|
||||||
/tmp/ccTKBm5t.s:25 .text.HAL_EXTI_SetConfigLine:0000000000000000 HAL_EXTI_SetConfigLine
|
/tmp/ccMMPL4p.s:25 .text.HAL_EXTI_SetConfigLine:0000000000000000 HAL_EXTI_SetConfigLine
|
||||||
/tmp/ccTKBm5t.s:239 .text.HAL_EXTI_SetConfigLine:00000000000000cc $d
|
/tmp/ccMMPL4p.s:239 .text.HAL_EXTI_SetConfigLine:00000000000000cc $d
|
||||||
/tmp/ccTKBm5t.s:245 .text.HAL_EXTI_GetConfigLine:0000000000000000 $t
|
/tmp/ccMMPL4p.s:245 .text.HAL_EXTI_GetConfigLine:0000000000000000 $t
|
||||||
/tmp/ccTKBm5t.s:252 .text.HAL_EXTI_GetConfigLine:0000000000000000 HAL_EXTI_GetConfigLine
|
/tmp/ccMMPL4p.s:252 .text.HAL_EXTI_GetConfigLine:0000000000000000 HAL_EXTI_GetConfigLine
|
||||||
/tmp/ccTKBm5t.s:428 .text.HAL_EXTI_GetConfigLine:00000000000000a0 $d
|
/tmp/ccMMPL4p.s:428 .text.HAL_EXTI_GetConfigLine:00000000000000a0 $d
|
||||||
/tmp/ccTKBm5t.s:434 .text.HAL_EXTI_ClearConfigLine:0000000000000000 $t
|
/tmp/ccMMPL4p.s:434 .text.HAL_EXTI_ClearConfigLine:0000000000000000 $t
|
||||||
/tmp/ccTKBm5t.s:441 .text.HAL_EXTI_ClearConfigLine:0000000000000000 HAL_EXTI_ClearConfigLine
|
/tmp/ccMMPL4p.s:441 .text.HAL_EXTI_ClearConfigLine:0000000000000000 HAL_EXTI_ClearConfigLine
|
||||||
/tmp/ccTKBm5t.s:581 .text.HAL_EXTI_ClearConfigLine:0000000000000080 $d
|
/tmp/ccMMPL4p.s:581 .text.HAL_EXTI_ClearConfigLine:0000000000000080 $d
|
||||||
/tmp/ccTKBm5t.s:587 .text.HAL_EXTI_RegisterCallback:0000000000000000 $t
|
/tmp/ccMMPL4p.s:587 .text.HAL_EXTI_RegisterCallback:0000000000000000 $t
|
||||||
/tmp/ccTKBm5t.s:594 .text.HAL_EXTI_RegisterCallback:0000000000000000 HAL_EXTI_RegisterCallback
|
/tmp/ccMMPL4p.s:594 .text.HAL_EXTI_RegisterCallback:0000000000000000 HAL_EXTI_RegisterCallback
|
||||||
/tmp/ccTKBm5t.s:627 .text.HAL_EXTI_GetHandle:0000000000000000 $t
|
/tmp/ccMMPL4p.s:627 .text.HAL_EXTI_GetHandle:0000000000000000 $t
|
||||||
/tmp/ccTKBm5t.s:634 .text.HAL_EXTI_GetHandle:0000000000000000 HAL_EXTI_GetHandle
|
/tmp/ccMMPL4p.s:634 .text.HAL_EXTI_GetHandle:0000000000000000 HAL_EXTI_GetHandle
|
||||||
/tmp/ccTKBm5t.s:666 .text.HAL_EXTI_IRQHandler:0000000000000000 $t
|
/tmp/ccMMPL4p.s:666 .text.HAL_EXTI_IRQHandler:0000000000000000 $t
|
||||||
/tmp/ccTKBm5t.s:673 .text.HAL_EXTI_IRQHandler:0000000000000000 HAL_EXTI_IRQHandler
|
/tmp/ccMMPL4p.s:673 .text.HAL_EXTI_IRQHandler:0000000000000000 HAL_EXTI_IRQHandler
|
||||||
/tmp/ccTKBm5t.s:727 .text.HAL_EXTI_IRQHandler:0000000000000020 $d
|
/tmp/ccMMPL4p.s:727 .text.HAL_EXTI_IRQHandler:0000000000000020 $d
|
||||||
/tmp/ccTKBm5t.s:732 .text.HAL_EXTI_GetPending:0000000000000000 $t
|
/tmp/ccMMPL4p.s:732 .text.HAL_EXTI_GetPending:0000000000000000 $t
|
||||||
/tmp/ccTKBm5t.s:739 .text.HAL_EXTI_GetPending:0000000000000000 HAL_EXTI_GetPending
|
/tmp/ccMMPL4p.s:739 .text.HAL_EXTI_GetPending:0000000000000000 HAL_EXTI_GetPending
|
||||||
/tmp/ccTKBm5t.s:784 .text.HAL_EXTI_GetPending:0000000000000018 $d
|
/tmp/ccMMPL4p.s:784 .text.HAL_EXTI_GetPending:0000000000000018 $d
|
||||||
/tmp/ccTKBm5t.s:789 .text.HAL_EXTI_ClearPending:0000000000000000 $t
|
/tmp/ccMMPL4p.s:789 .text.HAL_EXTI_ClearPending:0000000000000000 $t
|
||||||
/tmp/ccTKBm5t.s:796 .text.HAL_EXTI_ClearPending:0000000000000000 HAL_EXTI_ClearPending
|
/tmp/ccMMPL4p.s:796 .text.HAL_EXTI_ClearPending:0000000000000000 HAL_EXTI_ClearPending
|
||||||
/tmp/ccTKBm5t.s:826 .text.HAL_EXTI_ClearPending:0000000000000010 $d
|
/tmp/ccMMPL4p.s:826 .text.HAL_EXTI_ClearPending:0000000000000010 $d
|
||||||
/tmp/ccTKBm5t.s:831 .text.HAL_EXTI_GenerateSWI:0000000000000000 $t
|
/tmp/ccMMPL4p.s:831 .text.HAL_EXTI_GenerateSWI:0000000000000000 $t
|
||||||
/tmp/ccTKBm5t.s:838 .text.HAL_EXTI_GenerateSWI:0000000000000000 HAL_EXTI_GenerateSWI
|
/tmp/ccMMPL4p.s:838 .text.HAL_EXTI_GenerateSWI:0000000000000000 HAL_EXTI_GenerateSWI
|
||||||
/tmp/ccTKBm5t.s:867 .text.HAL_EXTI_GenerateSWI:0000000000000010 $d
|
/tmp/ccMMPL4p.s:867 .text.HAL_EXTI_GenerateSWI:0000000000000010 $d
|
||||||
|
|
||||||
NO UNDEFINED SYMBOLS
|
NO UNDEFINED SYMBOLS
|
||||||
|
|||||||
Binary file not shown.
@ -29,7 +29,9 @@ build/stm32f7xx_hal_flash.o: \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
||||||
Inc/stm32f7xx_hal_conf.h:
|
Inc/stm32f7xx_hal_conf.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
||||||
@ -62,3 +64,5 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/cc67Igjp.s page 1
|
ARM GAS /tmp/cc9ae1RU.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** (+) 64 cache lines of 128 bits on I-Code
|
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** (+) 64 cache lines of 128 bits on I-Code
|
||||||
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** (+) 8 cache lines of 128 bits on D-Code
|
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** (+) 8 cache lines of 128 bits on D-Code
|
||||||
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
||||||
ARM GAS /tmp/cc67Igjp.s page 2
|
ARM GAS /tmp/cc9ae1RU.s page 2
|
||||||
|
|
||||||
|
|
||||||
32:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** ##### How to use this driver #####
|
32:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** ##### How to use this driver #####
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** * @{
|
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** * @{
|
||||||
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** */
|
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** */
|
||||||
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
||||||
ARM GAS /tmp/cc67Igjp.s page 3
|
ARM GAS /tmp/cc9ae1RU.s page 3
|
||||||
|
|
||||||
|
|
||||||
89:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** /** @defgroup FLASH FLASH
|
89:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** /** @defgroup FLASH FLASH
|
||||||
@ -178,7 +178,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** ##### Programming operation functions #####
|
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** ##### Programming operation functions #####
|
||||||
144:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** ===============================================================================
|
144:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** ===============================================================================
|
||||||
145:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** [..]
|
145:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** [..]
|
||||||
ARM GAS /tmp/cc67Igjp.s page 4
|
ARM GAS /tmp/cc9ae1RU.s page 4
|
||||||
|
|
||||||
|
|
||||||
146:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** This subsection provides a set of functions allowing to manage the FLASH
|
146:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** This subsection provides a set of functions allowing to manage the FLASH
|
||||||
@ -238,7 +238,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
200:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** case FLASH_TYPEPROGRAM_DOUBLEWORD :
|
200:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** case FLASH_TYPEPROGRAM_DOUBLEWORD :
|
||||||
201:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** {
|
201:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** {
|
||||||
202:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** /*Program double word (64-bit) at a specified address.*/
|
202:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** /*Program double word (64-bit) at a specified address.*/
|
||||||
ARM GAS /tmp/cc67Igjp.s page 5
|
ARM GAS /tmp/cc9ae1RU.s page 5
|
||||||
|
|
||||||
|
|
||||||
203:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** FLASH_Program_DoubleWord(Address, Data);
|
203:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** FLASH_Program_DoubleWord(Address, Data);
|
||||||
@ -298,7 +298,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
257:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** {
|
257:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** {
|
||||||
258:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** /*Program byte (8-bit) at a specified address.*/
|
258:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** /*Program byte (8-bit) at a specified address.*/
|
||||||
259:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** FLASH_Program_Byte(Address, (uint8_t) Data);
|
259:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** FLASH_Program_Byte(Address, (uint8_t) Data);
|
||||||
ARM GAS /tmp/cc67Igjp.s page 6
|
ARM GAS /tmp/cc9ae1RU.s page 6
|
||||||
|
|
||||||
|
|
||||||
260:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** break;
|
260:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** break;
|
||||||
@ -358,7 +358,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
314:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** {
|
314:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** {
|
||||||
315:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** case FLASH_PROC_SECTERASE :
|
315:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** case FLASH_PROC_SECTERASE :
|
||||||
316:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** {
|
316:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** {
|
||||||
ARM GAS /tmp/cc67Igjp.s page 7
|
ARM GAS /tmp/cc9ae1RU.s page 7
|
||||||
|
|
||||||
|
|
||||||
317:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** /* Nb of sector to erased can be decreased */
|
317:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** /* Nb of sector to erased can be decreased */
|
||||||
@ -418,7 +418,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
371:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** switch (pFlash.ProcedureOnGoing)
|
371:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** switch (pFlash.ProcedureOnGoing)
|
||||||
372:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** {
|
372:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** {
|
||||||
373:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** case FLASH_PROC_SECTERASE :
|
373:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** case FLASH_PROC_SECTERASE :
|
||||||
ARM GAS /tmp/cc67Igjp.s page 8
|
ARM GAS /tmp/cc9ae1RU.s page 8
|
||||||
|
|
||||||
|
|
||||||
374:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** {
|
374:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** {
|
||||||
@ -478,7 +478,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
428:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** __weak void HAL_FLASH_EndOfOperationCallback(uint32_t ReturnValue)
|
428:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** __weak void HAL_FLASH_EndOfOperationCallback(uint32_t ReturnValue)
|
||||||
429:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** {
|
429:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** {
|
||||||
430:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** /* Prevent unused argument(s) compilation warning */
|
430:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** /* Prevent unused argument(s) compilation warning */
|
||||||
ARM GAS /tmp/cc67Igjp.s page 9
|
ARM GAS /tmp/cc9ae1RU.s page 9
|
||||||
|
|
||||||
|
|
||||||
431:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** UNUSED(ReturnValue);
|
431:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** UNUSED(ReturnValue);
|
||||||
@ -538,7 +538,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
485:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** WRITE_REG(FLASH->KEYR, FLASH_KEY1);
|
485:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** WRITE_REG(FLASH->KEYR, FLASH_KEY1);
|
||||||
486:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** WRITE_REG(FLASH->KEYR, FLASH_KEY2);
|
486:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** WRITE_REG(FLASH->KEYR, FLASH_KEY2);
|
||||||
487:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
487:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
||||||
ARM GAS /tmp/cc67Igjp.s page 10
|
ARM GAS /tmp/cc9ae1RU.s page 10
|
||||||
|
|
||||||
|
|
||||||
488:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** /* Verify Flash is unlocked */
|
488:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** /* Verify Flash is unlocked */
|
||||||
@ -598,7 +598,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
542:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** /**
|
542:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** /**
|
||||||
543:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** * @brief Launch the option byte loading.
|
543:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** * @brief Launch the option byte loading.
|
||||||
544:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** * @retval HAL Status
|
544:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** * @retval HAL Status
|
||||||
ARM GAS /tmp/cc67Igjp.s page 11
|
ARM GAS /tmp/cc9ae1RU.s page 11
|
||||||
|
|
||||||
|
|
||||||
545:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** */
|
545:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** */
|
||||||
@ -658,7 +658,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
599:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
599:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
||||||
600:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** /* Clear Error Code */
|
600:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** /* Clear Error Code */
|
||||||
601:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** pFlash.ErrorCode = HAL_FLASH_ERROR_NONE;
|
601:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** pFlash.ErrorCode = HAL_FLASH_ERROR_NONE;
|
||||||
ARM GAS /tmp/cc67Igjp.s page 12
|
ARM GAS /tmp/cc9ae1RU.s page 12
|
||||||
|
|
||||||
|
|
||||||
602:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
602:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
||||||
@ -718,7 +718,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
31 @ frame_needed = 0, uses_anonymous_args = 0
|
31 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
32 @ link register save eliminated.
|
32 @ link register save eliminated.
|
||||||
33 .loc 1 652 1 is_stmt 0 view .LVU1
|
33 .loc 1 652 1 is_stmt 0 view .LVU1
|
||||||
ARM GAS /tmp/cc67Igjp.s page 13
|
ARM GAS /tmp/cc9ae1RU.s page 13
|
||||||
|
|
||||||
|
|
||||||
34 0000 10B4 push {r4}
|
34 0000 10B4 push {r4}
|
||||||
@ -778,7 +778,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
14:Drivers/CMSIS/Include/cmsis_gcc.h **** * You may obtain a copy of the License at
|
14:Drivers/CMSIS/Include/cmsis_gcc.h **** * You may obtain a copy of the License at
|
||||||
15:Drivers/CMSIS/Include/cmsis_gcc.h **** *
|
15:Drivers/CMSIS/Include/cmsis_gcc.h **** *
|
||||||
16:Drivers/CMSIS/Include/cmsis_gcc.h **** * www.apache.org/licenses/LICENSE-2.0
|
16:Drivers/CMSIS/Include/cmsis_gcc.h **** * www.apache.org/licenses/LICENSE-2.0
|
||||||
ARM GAS /tmp/cc67Igjp.s page 14
|
ARM GAS /tmp/cc9ae1RU.s page 14
|
||||||
|
|
||||||
|
|
||||||
17:Drivers/CMSIS/Include/cmsis_gcc.h **** *
|
17:Drivers/CMSIS/Include/cmsis_gcc.h **** *
|
||||||
@ -838,7 +838,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
71:Drivers/CMSIS/Include/cmsis_gcc.h **** #pragma GCC diagnostic push
|
71:Drivers/CMSIS/Include/cmsis_gcc.h **** #pragma GCC diagnostic push
|
||||||
72:Drivers/CMSIS/Include/cmsis_gcc.h **** #pragma GCC diagnostic ignored "-Wpacked"
|
72:Drivers/CMSIS/Include/cmsis_gcc.h **** #pragma GCC diagnostic ignored "-Wpacked"
|
||||||
73:Drivers/CMSIS/Include/cmsis_gcc.h **** #pragma GCC diagnostic ignored "-Wattributes"
|
73:Drivers/CMSIS/Include/cmsis_gcc.h **** #pragma GCC diagnostic ignored "-Wattributes"
|
||||||
ARM GAS /tmp/cc67Igjp.s page 15
|
ARM GAS /tmp/cc9ae1RU.s page 15
|
||||||
|
|
||||||
|
|
||||||
74:Drivers/CMSIS/Include/cmsis_gcc.h **** struct __attribute__((packed)) T_UINT32 { uint32_t v; };
|
74:Drivers/CMSIS/Include/cmsis_gcc.h **** struct __attribute__((packed)) T_UINT32 { uint32_t v; };
|
||||||
@ -898,7 +898,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
128:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
128:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
129:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE void __enable_irq(void)
|
129:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE void __enable_irq(void)
|
||||||
130:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
130:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
ARM GAS /tmp/cc67Igjp.s page 16
|
ARM GAS /tmp/cc9ae1RU.s page 16
|
||||||
|
|
||||||
|
|
||||||
131:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("cpsie i" : : : "memory");
|
131:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("cpsie i" : : : "memory");
|
||||||
@ -958,7 +958,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
185:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
185:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
186:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
186:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
187:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (defined (__ARM_FEATURE_CMSE ) && (__ARM_FEATURE_CMSE == 3))
|
187:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (defined (__ARM_FEATURE_CMSE ) && (__ARM_FEATURE_CMSE == 3))
|
||||||
ARM GAS /tmp/cc67Igjp.s page 17
|
ARM GAS /tmp/cc9ae1RU.s page 17
|
||||||
|
|
||||||
|
|
||||||
188:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
188:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
||||||
@ -1018,7 +1018,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
242:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
242:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
||||||
243:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Get Process Stack Pointer
|
243:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Get Process Stack Pointer
|
||||||
244:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the current value of the Process Stack Pointer (PSP).
|
244:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the current value of the Process Stack Pointer (PSP).
|
||||||
ARM GAS /tmp/cc67Igjp.s page 18
|
ARM GAS /tmp/cc9ae1RU.s page 18
|
||||||
|
|
||||||
|
|
||||||
245:Drivers/CMSIS/Include/cmsis_gcc.h **** \return PSP Register value
|
245:Drivers/CMSIS/Include/cmsis_gcc.h **** \return PSP Register value
|
||||||
@ -1078,7 +1078,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
299:Drivers/CMSIS/Include/cmsis_gcc.h **** \return MSP Register value
|
299:Drivers/CMSIS/Include/cmsis_gcc.h **** \return MSP Register value
|
||||||
300:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
300:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
301:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __get_MSP(void)
|
301:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __get_MSP(void)
|
||||||
ARM GAS /tmp/cc67Igjp.s page 19
|
ARM GAS /tmp/cc9ae1RU.s page 19
|
||||||
|
|
||||||
|
|
||||||
302:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
302:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
@ -1138,7 +1138,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
356:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __TZ_get_SP_NS(void)
|
356:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __TZ_get_SP_NS(void)
|
||||||
357:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
357:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
358:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
358:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
||||||
ARM GAS /tmp/cc67Igjp.s page 20
|
ARM GAS /tmp/cc9ae1RU.s page 20
|
||||||
|
|
||||||
|
|
||||||
359:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
359:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
@ -1198,7 +1198,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
413:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
413:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
414:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MSR primask, %0" : : "r" (priMask) : "memory");
|
414:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MSR primask, %0" : : "r" (priMask) : "memory");
|
||||||
415:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
415:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
||||||
ARM GAS /tmp/cc67Igjp.s page 21
|
ARM GAS /tmp/cc9ae1RU.s page 21
|
||||||
|
|
||||||
|
|
||||||
416:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
416:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
@ -1258,7 +1258,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
470:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (defined (__ARM_FEATURE_CMSE ) && (__ARM_FEATURE_CMSE == 3))
|
470:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (defined (__ARM_FEATURE_CMSE ) && (__ARM_FEATURE_CMSE == 3))
|
||||||
471:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
471:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
||||||
472:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Get Base Priority (non-secure)
|
472:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Get Base Priority (non-secure)
|
||||||
ARM GAS /tmp/cc67Igjp.s page 22
|
ARM GAS /tmp/cc9ae1RU.s page 22
|
||||||
|
|
||||||
|
|
||||||
473:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the current value of the non-secure Base Priority register when in secure state.
|
473:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the current value of the non-secure Base Priority register when in secure state.
|
||||||
@ -1318,7 +1318,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
527:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __get_FAULTMASK(void)
|
527:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __get_FAULTMASK(void)
|
||||||
528:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
528:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
529:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
529:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
||||||
ARM GAS /tmp/cc67Igjp.s page 23
|
ARM GAS /tmp/cc9ae1RU.s page 23
|
||||||
|
|
||||||
|
|
||||||
530:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
530:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
@ -1378,7 +1378,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
584:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Get Process Stack Pointer Limit
|
584:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Get Process Stack Pointer Limit
|
||||||
585:Drivers/CMSIS/Include/cmsis_gcc.h **** Devices without ARMv8-M Main Extensions (i.e. Cortex-M23) lack the non-secure
|
585:Drivers/CMSIS/Include/cmsis_gcc.h **** Devices without ARMv8-M Main Extensions (i.e. Cortex-M23) lack the non-secure
|
||||||
586:Drivers/CMSIS/Include/cmsis_gcc.h **** Stack Pointer Limit register hence zero is returned always in non-secure
|
586:Drivers/CMSIS/Include/cmsis_gcc.h **** Stack Pointer Limit register hence zero is returned always in non-secure
|
||||||
ARM GAS /tmp/cc67Igjp.s page 24
|
ARM GAS /tmp/cc9ae1RU.s page 24
|
||||||
|
|
||||||
|
|
||||||
587:Drivers/CMSIS/Include/cmsis_gcc.h **** mode.
|
587:Drivers/CMSIS/Include/cmsis_gcc.h **** mode.
|
||||||
@ -1438,7 +1438,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
641:Drivers/CMSIS/Include/cmsis_gcc.h **** // without main extensions, the non-secure PSPLIM is RAZ/WI
|
641:Drivers/CMSIS/Include/cmsis_gcc.h **** // without main extensions, the non-secure PSPLIM is RAZ/WI
|
||||||
642:Drivers/CMSIS/Include/cmsis_gcc.h **** (void)ProcStackPtrLimit;
|
642:Drivers/CMSIS/Include/cmsis_gcc.h **** (void)ProcStackPtrLimit;
|
||||||
643:Drivers/CMSIS/Include/cmsis_gcc.h **** #else
|
643:Drivers/CMSIS/Include/cmsis_gcc.h **** #else
|
||||||
ARM GAS /tmp/cc67Igjp.s page 25
|
ARM GAS /tmp/cc9ae1RU.s page 25
|
||||||
|
|
||||||
|
|
||||||
644:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MSR psplim, %0" : : "r" (ProcStackPtrLimit));
|
644:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MSR psplim, %0" : : "r" (ProcStackPtrLimit));
|
||||||
@ -1498,7 +1498,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
698:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
698:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
699:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the current value of the non-secure Main Stack Pointer Limit(MSPLIM) when in sec
|
699:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the current value of the non-secure Main Stack Pointer Limit(MSPLIM) when in sec
|
||||||
700:Drivers/CMSIS/Include/cmsis_gcc.h **** \return MSPLIM Register value
|
700:Drivers/CMSIS/Include/cmsis_gcc.h **** \return MSPLIM Register value
|
||||||
ARM GAS /tmp/cc67Igjp.s page 26
|
ARM GAS /tmp/cc9ae1RU.s page 26
|
||||||
|
|
||||||
|
|
||||||
701:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
701:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
@ -1558,7 +1558,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
755:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
755:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
||||||
756:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
756:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
757:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif /* ((defined (__ARM_ARCH_8M_MAIN__ ) && (__ARM_ARCH_8M_MAIN__ == 1)) || \
|
757:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif /* ((defined (__ARM_ARCH_8M_MAIN__ ) && (__ARM_ARCH_8M_MAIN__ == 1)) || \
|
||||||
ARM GAS /tmp/cc67Igjp.s page 27
|
ARM GAS /tmp/cc9ae1RU.s page 27
|
||||||
|
|
||||||
|
|
||||||
758:Drivers/CMSIS/Include/cmsis_gcc.h **** (defined (__ARM_ARCH_8M_BASE__ ) && (__ARM_ARCH_8M_BASE__ == 1)) ) */
|
758:Drivers/CMSIS/Include/cmsis_gcc.h **** (defined (__ARM_ARCH_8M_BASE__ ) && (__ARM_ARCH_8M_BASE__ == 1)) ) */
|
||||||
@ -1618,7 +1618,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
812:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
812:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
813:Drivers/CMSIS/Include/cmsis_gcc.h **** /* ########################## Core Instruction Access ######################### */
|
813:Drivers/CMSIS/Include/cmsis_gcc.h **** /* ########################## Core Instruction Access ######################### */
|
||||||
814:Drivers/CMSIS/Include/cmsis_gcc.h **** /** \defgroup CMSIS_Core_InstructionInterface CMSIS Core Instruction Interface
|
814:Drivers/CMSIS/Include/cmsis_gcc.h **** /** \defgroup CMSIS_Core_InstructionInterface CMSIS Core Instruction Interface
|
||||||
ARM GAS /tmp/cc67Igjp.s page 28
|
ARM GAS /tmp/cc9ae1RU.s page 28
|
||||||
|
|
||||||
|
|
||||||
815:Drivers/CMSIS/Include/cmsis_gcc.h **** Access to dedicated instructions
|
815:Drivers/CMSIS/Include/cmsis_gcc.h **** Access to dedicated instructions
|
||||||
@ -1678,7 +1678,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
867:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
867:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
868:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("isb 0xF":::"memory");
|
868:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("isb 0xF":::"memory");
|
||||||
64 .loc 2 868 3 view .LVU13
|
64 .loc 2 868 3 view .LVU13
|
||||||
ARM GAS /tmp/cc67Igjp.s page 29
|
ARM GAS /tmp/cc9ae1RU.s page 29
|
||||||
|
|
||||||
|
|
||||||
65 .syntax unified
|
65 .syntax unified
|
||||||
@ -1738,7 +1738,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
100 .cfi_endproc
|
100 .cfi_endproc
|
||||||
101 .LFE153:
|
101 .LFE153:
|
||||||
103 .section .text.FLASH_Program_Word,"ax",%progbits
|
103 .section .text.FLASH_Program_Word,"ax",%progbits
|
||||||
ARM GAS /tmp/cc67Igjp.s page 30
|
ARM GAS /tmp/cc9ae1RU.s page 30
|
||||||
|
|
||||||
|
|
||||||
104 .align 1
|
104 .align 1
|
||||||
@ -1798,7 +1798,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
698:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** *(__IO uint32_t*)Address = Data;
|
698:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** *(__IO uint32_t*)Address = Data;
|
||||||
135 .loc 1 698 3 is_stmt 1 view .LVU28
|
135 .loc 1 698 3 is_stmt 1 view .LVU28
|
||||||
136 .loc 1 698 28 is_stmt 0 view .LVU29
|
136 .loc 1 698 28 is_stmt 0 view .LVU29
|
||||||
ARM GAS /tmp/cc67Igjp.s page 31
|
ARM GAS /tmp/cc9ae1RU.s page 31
|
||||||
|
|
||||||
|
|
||||||
137 001a 0160 str r1, [r0]
|
137 001a 0160 str r1, [r0]
|
||||||
@ -1858,7 +1858,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
172 .cfi_startproc
|
172 .cfi_startproc
|
||||||
173 @ args = 0, pretend = 0, frame = 0
|
173 @ args = 0, pretend = 0, frame = 0
|
||||||
174 @ frame_needed = 0, uses_anonymous_args = 0
|
174 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
ARM GAS /tmp/cc67Igjp.s page 32
|
ARM GAS /tmp/cc9ae1RU.s page 32
|
||||||
|
|
||||||
|
|
||||||
175 @ link register save eliminated.
|
175 @ link register save eliminated.
|
||||||
@ -1918,7 +1918,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
213 0022 00BF .align 2
|
213 0022 00BF .align 2
|
||||||
214 .L9:
|
214 .L9:
|
||||||
215 0024 003C0240 .word 1073888256
|
215 0024 003C0240 .word 1073888256
|
||||||
ARM GAS /tmp/cc67Igjp.s page 33
|
ARM GAS /tmp/cc9ae1RU.s page 33
|
||||||
|
|
||||||
|
|
||||||
216 .cfi_endproc
|
216 .cfi_endproc
|
||||||
@ -1978,7 +1978,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
756:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
756:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
||||||
757:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** *(__IO uint8_t*)Address = Data;
|
757:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** *(__IO uint8_t*)Address = Data;
|
||||||
250 .loc 1 757 3 is_stmt 1 view .LVU56
|
250 .loc 1 757 3 is_stmt 1 view .LVU56
|
||||||
ARM GAS /tmp/cc67Igjp.s page 34
|
ARM GAS /tmp/cc9ae1RU.s page 34
|
||||||
|
|
||||||
|
|
||||||
251 .loc 1 757 27 is_stmt 0 view .LVU57
|
251 .loc 1 757 27 is_stmt 0 view .LVU57
|
||||||
@ -2038,7 +2038,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
293 0002 DB68 ldr r3, [r3, #12]
|
293 0002 DB68 ldr r3, [r3, #12]
|
||||||
294 .loc 1 770 5 view .LVU65
|
294 .loc 1 770 5 view .LVU65
|
||||||
295 0004 13F0020F tst r3, #2
|
295 0004 13F0020F tst r3, #2
|
||||||
ARM GAS /tmp/cc67Igjp.s page 35
|
ARM GAS /tmp/cc9ae1RU.s page 35
|
||||||
|
|
||||||
|
|
||||||
296 0008 04D0 beq .L15
|
296 0008 04D0 beq .L15
|
||||||
@ -2098,7 +2098,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
335 003e DB68 ldr r3, [r3, #12]
|
335 003e DB68 ldr r3, [r3, #12]
|
||||||
336 .loc 1 785 5 view .LVU80
|
336 .loc 1 785 5 view .LVU80
|
||||||
337 0040 13F0400F tst r3, #64
|
337 0040 13F0400F tst r3, #64
|
||||||
ARM GAS /tmp/cc67Igjp.s page 36
|
ARM GAS /tmp/cc9ae1RU.s page 36
|
||||||
|
|
||||||
|
|
||||||
338 0044 04D0 beq .L18
|
338 0044 04D0 beq .L18
|
||||||
@ -2158,7 +2158,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
374 .section .text.HAL_FLASH_Program_IT,"ax",%progbits
|
374 .section .text.HAL_FLASH_Program_IT,"ax",%progbits
|
||||||
375 .align 1
|
375 .align 1
|
||||||
376 .global HAL_FLASH_Program_IT
|
376 .global HAL_FLASH_Program_IT
|
||||||
ARM GAS /tmp/cc67Igjp.s page 37
|
ARM GAS /tmp/cc9ae1RU.s page 37
|
||||||
|
|
||||||
|
|
||||||
377 .syntax unified
|
377 .syntax unified
|
||||||
@ -2218,7 +2218,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
421 .loc 1 245 3 discriminator 2 view .LVU100
|
421 .loc 1 245 3 discriminator 2 view .LVU100
|
||||||
422 001e 2669 ldr r6, [r4, #16]
|
422 001e 2669 ldr r6, [r4, #16]
|
||||||
423 0020 46F00076 orr r6, r6, #33554432
|
423 0020 46F00076 orr r6, r6, #33554432
|
||||||
ARM GAS /tmp/cc67Igjp.s page 38
|
ARM GAS /tmp/cc9ae1RU.s page 38
|
||||||
|
|
||||||
|
|
||||||
424 0024 2661 str r6, [r4, #16]
|
424 0024 2661 str r6, [r4, #16]
|
||||||
@ -2278,7 +2278,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
267:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** }
|
267:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** }
|
||||||
465 .loc 1 267 7 view .LVU114
|
465 .loc 1 267 7 view .LVU114
|
||||||
466 0050 F9E7 b .L23
|
466 0050 F9E7 b .L23
|
||||||
ARM GAS /tmp/cc67Igjp.s page 39
|
ARM GAS /tmp/cc9ae1RU.s page 39
|
||||||
|
|
||||||
|
|
||||||
467 .LVL11:
|
467 .LVL11:
|
||||||
@ -2338,7 +2338,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
510 .section .text.HAL_FLASH_EndOfOperationCallback,"ax",%progbits
|
510 .section .text.HAL_FLASH_EndOfOperationCallback,"ax",%progbits
|
||||||
511 .align 1
|
511 .align 1
|
||||||
512 .weak HAL_FLASH_EndOfOperationCallback
|
512 .weak HAL_FLASH_EndOfOperationCallback
|
||||||
ARM GAS /tmp/cc67Igjp.s page 40
|
ARM GAS /tmp/cc9ae1RU.s page 40
|
||||||
|
|
||||||
|
|
||||||
513 .syntax unified
|
513 .syntax unified
|
||||||
@ -2398,7 +2398,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
565 .cfi_startproc
|
565 .cfi_startproc
|
||||||
566 @ args = 0, pretend = 0, frame = 0
|
566 @ args = 0, pretend = 0, frame = 0
|
||||||
567 @ frame_needed = 0, uses_anonymous_args = 0
|
567 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
ARM GAS /tmp/cc67Igjp.s page 41
|
ARM GAS /tmp/cc9ae1RU.s page 41
|
||||||
|
|
||||||
|
|
||||||
568 0000 38B5 push {r3, r4, r5, lr}
|
568 0000 38B5 push {r3, r4, r5, lr}
|
||||||
@ -2458,7 +2458,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
608 .loc 1 313 5 view .LVU147
|
608 .loc 1 313 5 view .LVU147
|
||||||
313:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** {
|
313:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** {
|
||||||
609 .loc 1 313 19 is_stmt 0 view .LVU148
|
609 .loc 1 313 19 is_stmt 0 view .LVU148
|
||||||
ARM GAS /tmp/cc67Igjp.s page 42
|
ARM GAS /tmp/cc9ae1RU.s page 42
|
||||||
|
|
||||||
|
|
||||||
610 0030 354B ldr r3, .L50+8
|
610 0030 354B ldr r3, .L50+8
|
||||||
@ -2518,7 +2518,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
653 006a 274B ldr r3, .L50+8
|
653 006a 274B ldr r3, .L50+8
|
||||||
654 006c 0022 movs r2, #0
|
654 006c 0022 movs r2, #0
|
||||||
655 006e 1A70 strb r2, [r3]
|
655 006e 1A70 strb r2, [r3]
|
||||||
ARM GAS /tmp/cc67Igjp.s page 43
|
ARM GAS /tmp/cc9ae1RU.s page 43
|
||||||
|
|
||||||
|
|
||||||
656 .L41:
|
656 .L41:
|
||||||
@ -2578,7 +2578,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
323:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** /* Indicate user which sector has been erased */
|
323:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** /* Indicate user which sector has been erased */
|
||||||
695 .loc 1 323 11 is_stmt 1 view .LVU175
|
695 .loc 1 323 11 is_stmt 1 view .LVU175
|
||||||
323:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** /* Indicate user which sector has been erased */
|
323:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** /* Indicate user which sector has been erased */
|
||||||
ARM GAS /tmp/cc67Igjp.s page 44
|
ARM GAS /tmp/cc9ae1RU.s page 44
|
||||||
|
|
||||||
|
|
||||||
696 .loc 1 323 16 is_stmt 0 view .LVU176
|
696 .loc 1 323 16 is_stmt 0 view .LVU176
|
||||||
@ -2638,7 +2638,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
738 .LVL34:
|
738 .LVL34:
|
||||||
350:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** break;
|
350:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** break;
|
||||||
739 .loc 1 350 9 view .LVU189
|
739 .loc 1 350 9 view .LVU189
|
||||||
ARM GAS /tmp/cc67Igjp.s page 45
|
ARM GAS /tmp/cc9ae1RU.s page 45
|
||||||
|
|
||||||
|
|
||||||
350:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** break;
|
350:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** break;
|
||||||
@ -2698,7 +2698,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
778 .loc 1 389 9 view .LVU205
|
778 .loc 1 389 9 view .LVU205
|
||||||
389:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** break;
|
389:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** break;
|
||||||
779 .loc 1 389 14 is_stmt 0 view .LVU206
|
779 .loc 1 389 14 is_stmt 0 view .LVU206
|
||||||
ARM GAS /tmp/cc67Igjp.s page 46
|
ARM GAS /tmp/cc9ae1RU.s page 46
|
||||||
|
|
||||||
|
|
||||||
780 00f4 044B ldr r3, .L50+8
|
780 00f4 044B ldr r3, .L50+8
|
||||||
@ -2758,7 +2758,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
827 .L56:
|
827 .L56:
|
||||||
485:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** WRITE_REG(FLASH->KEYR, FLASH_KEY2);
|
485:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** WRITE_REG(FLASH->KEYR, FLASH_KEY2);
|
||||||
828 .loc 1 485 5 is_stmt 1 view .LVU216
|
828 .loc 1 485 5 is_stmt 1 view .LVU216
|
||||||
ARM GAS /tmp/cc67Igjp.s page 47
|
ARM GAS /tmp/cc9ae1RU.s page 47
|
||||||
|
|
||||||
|
|
||||||
829 000c 064B ldr r3, .L57
|
829 000c 064B ldr r3, .L57
|
||||||
@ -2818,7 +2818,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
505:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
505:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
||||||
875 .loc 1 505 13 is_stmt 0 view .LVU227
|
875 .loc 1 505 13 is_stmt 0 view .LVU227
|
||||||
876 0000 034A ldr r2, .L60
|
876 0000 034A ldr r2, .L60
|
||||||
ARM GAS /tmp/cc67Igjp.s page 48
|
ARM GAS /tmp/cc9ae1RU.s page 48
|
||||||
|
|
||||||
|
|
||||||
877 0002 1369 ldr r3, [r2, #16]
|
877 0002 1369 ldr r3, [r2, #16]
|
||||||
@ -2878,7 +2878,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
922 .loc 1 527 3 is_stmt 1 view .LVU238
|
922 .loc 1 527 3 is_stmt 1 view .LVU238
|
||||||
527:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** }
|
527:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** }
|
||||||
923 .loc 1 527 10 is_stmt 0 view .LVU239
|
923 .loc 1 527 10 is_stmt 0 view .LVU239
|
||||||
ARM GAS /tmp/cc67Igjp.s page 49
|
ARM GAS /tmp/cc9ae1RU.s page 49
|
||||||
|
|
||||||
|
|
||||||
924 0016 0020 movs r0, #0
|
924 0016 0020 movs r0, #0
|
||||||
@ -2938,7 +2938,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
974 .syntax unified
|
974 .syntax unified
|
||||||
975 .thumb
|
975 .thumb
|
||||||
976 .thumb_func
|
976 .thumb_func
|
||||||
ARM GAS /tmp/cc67Igjp.s page 50
|
ARM GAS /tmp/cc9ae1RU.s page 50
|
||||||
|
|
||||||
|
|
||||||
977 .fpu fpv5-d16
|
977 .fpu fpv5-d16
|
||||||
@ -2998,7 +2998,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
601:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
601:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
||||||
1026 .loc 1 601 20 is_stmt 0 view .LVU255
|
1026 .loc 1 601 20 is_stmt 0 view .LVU255
|
||||||
1027 0004 154B ldr r3, .L84
|
1027 0004 154B ldr r3, .L84
|
||||||
ARM GAS /tmp/cc67Igjp.s page 51
|
ARM GAS /tmp/cc9ae1RU.s page 51
|
||||||
|
|
||||||
|
|
||||||
1028 0006 0022 movs r2, #0
|
1028 0006 0022 movs r2, #0
|
||||||
@ -3058,7 +3058,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
1066 .L82:
|
1066 .L82:
|
||||||
620:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** {
|
620:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** {
|
||||||
1067 .loc 1 620 3 is_stmt 1 view .LVU272
|
1067 .loc 1 620 3 is_stmt 1 view .LVU272
|
||||||
ARM GAS /tmp/cc67Igjp.s page 52
|
ARM GAS /tmp/cc9ae1RU.s page 52
|
||||||
|
|
||||||
|
|
||||||
620:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** {
|
620:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** {
|
||||||
@ -3118,7 +3118,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
1111 .section .text.HAL_FLASH_Program,"ax",%progbits
|
1111 .section .text.HAL_FLASH_Program,"ax",%progbits
|
||||||
1112 .align 1
|
1112 .align 1
|
||||||
1113 .global HAL_FLASH_Program
|
1113 .global HAL_FLASH_Program
|
||||||
ARM GAS /tmp/cc67Igjp.s page 53
|
ARM GAS /tmp/cc9ae1RU.s page 53
|
||||||
|
|
||||||
|
|
||||||
1114 .syntax unified
|
1114 .syntax unified
|
||||||
@ -3178,7 +3178,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
1158 0018 4CF25030 movw r0, #50000
|
1158 0018 4CF25030 movw r0, #50000
|
||||||
1159 .LVL52:
|
1159 .LVL52:
|
||||||
173:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
173:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
||||||
ARM GAS /tmp/cc67Igjp.s page 54
|
ARM GAS /tmp/cc9ae1RU.s page 54
|
||||||
|
|
||||||
|
|
||||||
1160 .loc 1 173 12 discriminator 2 view .LVU296
|
1160 .loc 1 173 12 discriminator 2 view .LVU296
|
||||||
@ -3238,7 +3238,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
1202 004c 1A75 strb r2, [r3, #20]
|
1202 004c 1A75 strb r2, [r3, #20]
|
||||||
217:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
217:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
||||||
1203 .loc 1 217 3 view .LVU309
|
1203 .loc 1 217 3 view .LVU309
|
||||||
ARM GAS /tmp/cc67Igjp.s page 55
|
ARM GAS /tmp/cc9ae1RU.s page 55
|
||||||
|
|
||||||
|
|
||||||
219:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** }
|
219:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c **** }
|
||||||
@ -3298,7 +3298,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
1246 0070 0220 movs r0, #2
|
1246 0070 0220 movs r0, #2
|
||||||
1247 .LVL68:
|
1247 .LVL68:
|
||||||
167:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
167:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c ****
|
||||||
ARM GAS /tmp/cc67Igjp.s page 56
|
ARM GAS /tmp/cc9ae1RU.s page 56
|
||||||
|
|
||||||
|
|
||||||
1248 .loc 1 167 3 view .LVU322
|
1248 .loc 1 167 3 view .LVU322
|
||||||
@ -3358,7 +3358,7 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
1299 .align 2
|
1299 .align 2
|
||||||
1300 .set .LANCHOR0,. + 0
|
1300 .set .LANCHOR0,. + 0
|
||||||
1303 pFlash:
|
1303 pFlash:
|
||||||
ARM GAS /tmp/cc67Igjp.s page 57
|
ARM GAS /tmp/cc9ae1RU.s page 57
|
||||||
|
|
||||||
|
|
||||||
1304 0000 00000000 .space 28
|
1304 0000 00000000 .space 28
|
||||||
@ -3375,67 +3375,67 @@ ARM GAS /tmp/cc67Igjp.s page 1
|
|||||||
1311 .file 7 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash.h"
|
1311 .file 7 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash.h"
|
||||||
1312 .file 8 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h"
|
1312 .file 8 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h"
|
||||||
1313 .file 9 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash_ex.h"
|
1313 .file 9 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash_ex.h"
|
||||||
ARM GAS /tmp/cc67Igjp.s page 58
|
ARM GAS /tmp/cc9ae1RU.s page 58
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 stm32f7xx_hal_flash.c
|
*ABS*:0000000000000000 stm32f7xx_hal_flash.c
|
||||||
/tmp/cc67Igjp.s:17 .text.FLASH_Program_DoubleWord:0000000000000000 $t
|
/tmp/cc9ae1RU.s:17 .text.FLASH_Program_DoubleWord:0000000000000000 $t
|
||||||
/tmp/cc67Igjp.s:24 .text.FLASH_Program_DoubleWord:0000000000000000 FLASH_Program_DoubleWord
|
/tmp/cc9ae1RU.s:24 .text.FLASH_Program_DoubleWord:0000000000000000 FLASH_Program_DoubleWord
|
||||||
/tmp/cc67Igjp.s:99 .text.FLASH_Program_DoubleWord:0000000000000030 $d
|
/tmp/cc9ae1RU.s:99 .text.FLASH_Program_DoubleWord:0000000000000030 $d
|
||||||
/tmp/cc67Igjp.s:104 .text.FLASH_Program_Word:0000000000000000 $t
|
/tmp/cc9ae1RU.s:104 .text.FLASH_Program_Word:0000000000000000 $t
|
||||||
/tmp/cc67Igjp.s:110 .text.FLASH_Program_Word:0000000000000000 FLASH_Program_Word
|
/tmp/cc9ae1RU.s:110 .text.FLASH_Program_Word:0000000000000000 FLASH_Program_Word
|
||||||
/tmp/cc67Igjp.s:157 .text.FLASH_Program_Word:0000000000000024 $d
|
/tmp/cc9ae1RU.s:157 .text.FLASH_Program_Word:0000000000000024 $d
|
||||||
/tmp/cc67Igjp.s:162 .text.FLASH_Program_HalfWord:0000000000000000 $t
|
/tmp/cc9ae1RU.s:162 .text.FLASH_Program_HalfWord:0000000000000000 $t
|
||||||
/tmp/cc67Igjp.s:168 .text.FLASH_Program_HalfWord:0000000000000000 FLASH_Program_HalfWord
|
/tmp/cc9ae1RU.s:168 .text.FLASH_Program_HalfWord:0000000000000000 FLASH_Program_HalfWord
|
||||||
/tmp/cc67Igjp.s:215 .text.FLASH_Program_HalfWord:0000000000000024 $d
|
/tmp/cc9ae1RU.s:215 .text.FLASH_Program_HalfWord:0000000000000024 $d
|
||||||
/tmp/cc67Igjp.s:220 .text.FLASH_Program_Byte:0000000000000000 $t
|
/tmp/cc9ae1RU.s:220 .text.FLASH_Program_Byte:0000000000000000 $t
|
||||||
/tmp/cc67Igjp.s:226 .text.FLASH_Program_Byte:0000000000000000 FLASH_Program_Byte
|
/tmp/cc9ae1RU.s:226 .text.FLASH_Program_Byte:0000000000000000 FLASH_Program_Byte
|
||||||
/tmp/cc67Igjp.s:272 .text.FLASH_Program_Byte:0000000000000020 $d
|
/tmp/cc9ae1RU.s:272 .text.FLASH_Program_Byte:0000000000000020 $d
|
||||||
/tmp/cc67Igjp.s:277 .text.FLASH_SetErrorCode:0000000000000000 $t
|
/tmp/cc9ae1RU.s:277 .text.FLASH_SetErrorCode:0000000000000000 $t
|
||||||
/tmp/cc67Igjp.s:283 .text.FLASH_SetErrorCode:0000000000000000 FLASH_SetErrorCode
|
/tmp/cc9ae1RU.s:283 .text.FLASH_SetErrorCode:0000000000000000 FLASH_SetErrorCode
|
||||||
/tmp/cc67Igjp.s:369 .text.FLASH_SetErrorCode:000000000000006c $d
|
/tmp/cc9ae1RU.s:369 .text.FLASH_SetErrorCode:000000000000006c $d
|
||||||
/tmp/cc67Igjp.s:375 .text.HAL_FLASH_Program_IT:0000000000000000 $t
|
/tmp/cc9ae1RU.s:375 .text.HAL_FLASH_Program_IT:0000000000000000 $t
|
||||||
/tmp/cc67Igjp.s:382 .text.HAL_FLASH_Program_IT:0000000000000000 HAL_FLASH_Program_IT
|
/tmp/cc9ae1RU.s:382 .text.HAL_FLASH_Program_IT:0000000000000000 HAL_FLASH_Program_IT
|
||||||
/tmp/cc67Igjp.s:440 .text.HAL_FLASH_Program_IT:000000000000003a $d
|
/tmp/cc9ae1RU.s:440 .text.HAL_FLASH_Program_IT:000000000000003a $d
|
||||||
/tmp/cc67Igjp.s:444 .text.HAL_FLASH_Program_IT:000000000000003e $t
|
/tmp/cc9ae1RU.s:444 .text.HAL_FLASH_Program_IT:000000000000003e $t
|
||||||
/tmp/cc67Igjp.s:505 .text.HAL_FLASH_Program_IT:000000000000006c $d
|
/tmp/cc9ae1RU.s:505 .text.HAL_FLASH_Program_IT:000000000000006c $d
|
||||||
/tmp/cc67Igjp.s:511 .text.HAL_FLASH_EndOfOperationCallback:0000000000000000 $t
|
/tmp/cc9ae1RU.s:511 .text.HAL_FLASH_EndOfOperationCallback:0000000000000000 $t
|
||||||
/tmp/cc67Igjp.s:518 .text.HAL_FLASH_EndOfOperationCallback:0000000000000000 HAL_FLASH_EndOfOperationCallback
|
/tmp/cc9ae1RU.s:518 .text.HAL_FLASH_EndOfOperationCallback:0000000000000000 HAL_FLASH_EndOfOperationCallback
|
||||||
/tmp/cc67Igjp.s:533 .text.HAL_FLASH_OperationErrorCallback:0000000000000000 $t
|
/tmp/cc9ae1RU.s:533 .text.HAL_FLASH_OperationErrorCallback:0000000000000000 $t
|
||||||
/tmp/cc67Igjp.s:540 .text.HAL_FLASH_OperationErrorCallback:0000000000000000 HAL_FLASH_OperationErrorCallback
|
/tmp/cc9ae1RU.s:540 .text.HAL_FLASH_OperationErrorCallback:0000000000000000 HAL_FLASH_OperationErrorCallback
|
||||||
/tmp/cc67Igjp.s:555 .text.HAL_FLASH_IRQHandler:0000000000000000 $t
|
/tmp/cc9ae1RU.s:555 .text.HAL_FLASH_IRQHandler:0000000000000000 $t
|
||||||
/tmp/cc67Igjp.s:562 .text.HAL_FLASH_IRQHandler:0000000000000000 HAL_FLASH_IRQHandler
|
/tmp/cc9ae1RU.s:562 .text.HAL_FLASH_IRQHandler:0000000000000000 HAL_FLASH_IRQHandler
|
||||||
/tmp/cc67Igjp.s:794 .text.HAL_FLASH_IRQHandler:0000000000000100 $d
|
/tmp/cc9ae1RU.s:794 .text.HAL_FLASH_IRQHandler:0000000000000100 $d
|
||||||
/tmp/cc67Igjp.s:801 .text.HAL_FLASH_Unlock:0000000000000000 $t
|
/tmp/cc9ae1RU.s:801 .text.HAL_FLASH_Unlock:0000000000000000 $t
|
||||||
/tmp/cc67Igjp.s:808 .text.HAL_FLASH_Unlock:0000000000000000 HAL_FLASH_Unlock
|
/tmp/cc9ae1RU.s:808 .text.HAL_FLASH_Unlock:0000000000000000 HAL_FLASH_Unlock
|
||||||
/tmp/cc67Igjp.s:854 .text.HAL_FLASH_Unlock:0000000000000028 $d
|
/tmp/cc9ae1RU.s:854 .text.HAL_FLASH_Unlock:0000000000000028 $d
|
||||||
/tmp/cc67Igjp.s:860 .text.HAL_FLASH_Lock:0000000000000000 $t
|
/tmp/cc9ae1RU.s:860 .text.HAL_FLASH_Lock:0000000000000000 $t
|
||||||
/tmp/cc67Igjp.s:867 .text.HAL_FLASH_Lock:0000000000000000 HAL_FLASH_Lock
|
/tmp/cc9ae1RU.s:867 .text.HAL_FLASH_Lock:0000000000000000 HAL_FLASH_Lock
|
||||||
/tmp/cc67Igjp.s:887 .text.HAL_FLASH_Lock:0000000000000010 $d
|
/tmp/cc9ae1RU.s:887 .text.HAL_FLASH_Lock:0000000000000010 $d
|
||||||
/tmp/cc67Igjp.s:892 .text.HAL_FLASH_OB_Unlock:0000000000000000 $t
|
/tmp/cc9ae1RU.s:892 .text.HAL_FLASH_OB_Unlock:0000000000000000 $t
|
||||||
/tmp/cc67Igjp.s:899 .text.HAL_FLASH_OB_Unlock:0000000000000000 HAL_FLASH_OB_Unlock
|
/tmp/cc9ae1RU.s:899 .text.HAL_FLASH_OB_Unlock:0000000000000000 HAL_FLASH_OB_Unlock
|
||||||
/tmp/cc67Igjp.s:934 .text.HAL_FLASH_OB_Unlock:0000000000000020 $d
|
/tmp/cc9ae1RU.s:934 .text.HAL_FLASH_OB_Unlock:0000000000000020 $d
|
||||||
/tmp/cc67Igjp.s:940 .text.HAL_FLASH_OB_Lock:0000000000000000 $t
|
/tmp/cc9ae1RU.s:940 .text.HAL_FLASH_OB_Lock:0000000000000000 $t
|
||||||
/tmp/cc67Igjp.s:947 .text.HAL_FLASH_OB_Lock:0000000000000000 HAL_FLASH_OB_Lock
|
/tmp/cc9ae1RU.s:947 .text.HAL_FLASH_OB_Lock:0000000000000000 HAL_FLASH_OB_Lock
|
||||||
/tmp/cc67Igjp.s:967 .text.HAL_FLASH_OB_Lock:0000000000000010 $d
|
/tmp/cc9ae1RU.s:967 .text.HAL_FLASH_OB_Lock:0000000000000010 $d
|
||||||
/tmp/cc67Igjp.s:972 .text.HAL_FLASH_GetError:0000000000000000 $t
|
/tmp/cc9ae1RU.s:972 .text.HAL_FLASH_GetError:0000000000000000 $t
|
||||||
/tmp/cc67Igjp.s:979 .text.HAL_FLASH_GetError:0000000000000000 HAL_FLASH_GetError
|
/tmp/cc9ae1RU.s:979 .text.HAL_FLASH_GetError:0000000000000000 HAL_FLASH_GetError
|
||||||
/tmp/cc67Igjp.s:995 .text.HAL_FLASH_GetError:0000000000000008 $d
|
/tmp/cc9ae1RU.s:995 .text.HAL_FLASH_GetError:0000000000000008 $d
|
||||||
/tmp/cc67Igjp.s:1000 .text.FLASH_WaitForLastOperation:0000000000000000 $t
|
/tmp/cc9ae1RU.s:1000 .text.FLASH_WaitForLastOperation:0000000000000000 $t
|
||||||
/tmp/cc67Igjp.s:1007 .text.FLASH_WaitForLastOperation:0000000000000000 FLASH_WaitForLastOperation
|
/tmp/cc9ae1RU.s:1007 .text.FLASH_WaitForLastOperation:0000000000000000 FLASH_WaitForLastOperation
|
||||||
/tmp/cc67Igjp.s:1106 .text.FLASH_WaitForLastOperation:000000000000005c $d
|
/tmp/cc9ae1RU.s:1106 .text.FLASH_WaitForLastOperation:000000000000005c $d
|
||||||
/tmp/cc67Igjp.s:1112 .text.HAL_FLASH_Program:0000000000000000 $t
|
/tmp/cc9ae1RU.s:1112 .text.HAL_FLASH_Program:0000000000000000 $t
|
||||||
/tmp/cc67Igjp.s:1119 .text.HAL_FLASH_Program:0000000000000000 HAL_FLASH_Program
|
/tmp/cc9ae1RU.s:1119 .text.HAL_FLASH_Program:0000000000000000 HAL_FLASH_Program
|
||||||
/tmp/cc67Igjp.s:1171 .text.HAL_FLASH_Program:000000000000002a $d
|
/tmp/cc9ae1RU.s:1171 .text.HAL_FLASH_Program:000000000000002a $d
|
||||||
/tmp/cc67Igjp.s:1175 .text.HAL_FLASH_Program:000000000000002e $t
|
/tmp/cc9ae1RU.s:1175 .text.HAL_FLASH_Program:000000000000002e $t
|
||||||
/tmp/cc67Igjp.s:1253 .text.HAL_FLASH_Program:0000000000000074 $d
|
/tmp/cc9ae1RU.s:1253 .text.HAL_FLASH_Program:0000000000000074 $d
|
||||||
/tmp/cc67Igjp.s:1259 .text.HAL_FLASH_OB_Launch:0000000000000000 $t
|
/tmp/cc9ae1RU.s:1259 .text.HAL_FLASH_OB_Launch:0000000000000000 $t
|
||||||
/tmp/cc67Igjp.s:1266 .text.HAL_FLASH_OB_Launch:0000000000000000 HAL_FLASH_OB_Launch
|
/tmp/cc9ae1RU.s:1266 .text.HAL_FLASH_OB_Launch:0000000000000000 HAL_FLASH_OB_Launch
|
||||||
/tmp/cc67Igjp.s:1293 .text.HAL_FLASH_OB_Launch:0000000000000018 $d
|
/tmp/cc9ae1RU.s:1293 .text.HAL_FLASH_OB_Launch:0000000000000018 $d
|
||||||
/tmp/cc67Igjp.s:1303 .bss.pFlash:0000000000000000 pFlash
|
/tmp/cc9ae1RU.s:1303 .bss.pFlash:0000000000000000 pFlash
|
||||||
/tmp/cc67Igjp.s:1299 .bss.pFlash:0000000000000000 $d
|
/tmp/cc9ae1RU.s:1299 .bss.pFlash:0000000000000000 $d
|
||||||
ARM GAS /tmp/cc67Igjp.s page 59
|
ARM GAS /tmp/cc9ae1RU.s page 59
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -29,7 +29,9 @@ build/stm32f7xx_hal_flash_ex.o: \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
||||||
Inc/stm32f7xx_hal_conf.h:
|
Inc/stm32f7xx_hal_conf.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
||||||
@ -62,3 +64,5 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/cc75hv6O.s page 1
|
ARM GAS /tmp/cc5GTpRB.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** HAL_FLASH_Lock() functions
|
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** HAL_FLASH_Lock() functions
|
||||||
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** (++) Erase function: Erase sector, erase all sectors
|
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** (++) Erase function: Erase sector, erase all sectors
|
||||||
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** (++) There are two modes of erase :
|
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** (++) There are two modes of erase :
|
||||||
ARM GAS /tmp/cc75hv6O.s page 2
|
ARM GAS /tmp/cc5GTpRB.s page 2
|
||||||
|
|
||||||
|
|
||||||
32:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** (+++) Polling Mode using HAL_FLASHEx_Erase()
|
32:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** (+++) Polling Mode using HAL_FLASHEx_Erase()
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @}
|
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @}
|
||||||
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** */
|
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** */
|
||||||
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
||||||
ARM GAS /tmp/cc75hv6O.s page 3
|
ARM GAS /tmp/cc5GTpRB.s page 3
|
||||||
|
|
||||||
|
|
||||||
89:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /* Private function prototypes -----------------------------------------------*/
|
89:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /* Private function prototypes -----------------------------------------------*/
|
||||||
@ -178,7 +178,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @{
|
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @{
|
||||||
144:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** */
|
144:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** */
|
||||||
145:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /**
|
145:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /**
|
||||||
ARM GAS /tmp/cc75hv6O.s page 4
|
ARM GAS /tmp/cc5GTpRB.s page 4
|
||||||
|
|
||||||
|
|
||||||
146:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @brief Perform a mass erase or erase the specified FLASH memory sectors
|
146:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @brief Perform a mass erase or erase the specified FLASH memory sectors
|
||||||
@ -238,7 +238,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
200:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /* Wait for last operation to be completed */
|
200:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /* Wait for last operation to be completed */
|
||||||
201:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** status = FLASH_WaitForLastOperation((uint32_t)FLASH_TIMEOUT_VALUE);
|
201:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** status = FLASH_WaitForLastOperation((uint32_t)FLASH_TIMEOUT_VALUE);
|
||||||
202:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
202:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
||||||
ARM GAS /tmp/cc75hv6O.s page 5
|
ARM GAS /tmp/cc5GTpRB.s page 5
|
||||||
|
|
||||||
|
|
||||||
203:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /* If the erase operation is completed, disable the SER Bit and SNB Bits */
|
203:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /* If the erase operation is completed, disable the SER Bit and SNB Bits */
|
||||||
@ -298,7 +298,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
257:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** #endif /* FLASH_OPTCR_nDBANK */
|
257:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** #endif /* FLASH_OPTCR_nDBANK */
|
||||||
258:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** }
|
258:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** }
|
||||||
259:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** else
|
259:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** else
|
||||||
ARM GAS /tmp/cc75hv6O.s page 6
|
ARM GAS /tmp/cc5GTpRB.s page 6
|
||||||
|
|
||||||
|
|
||||||
260:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** {
|
260:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** {
|
||||||
@ -358,7 +358,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
314:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** status = FLASH_OB_RDP_LevelConfig(pOBInit->RDPLevel);
|
314:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** status = FLASH_OB_RDP_LevelConfig(pOBInit->RDPLevel);
|
||||||
315:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** }
|
315:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** }
|
||||||
316:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
316:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
||||||
ARM GAS /tmp/cc75hv6O.s page 7
|
ARM GAS /tmp/cc5GTpRB.s page 7
|
||||||
|
|
||||||
|
|
||||||
317:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /* USER configuration */
|
317:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /* USER configuration */
|
||||||
@ -418,7 +418,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
371:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /* Process Unlocked */
|
371:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /* Process Unlocked */
|
||||||
372:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** __HAL_UNLOCK(&pFlash);
|
372:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** __HAL_UNLOCK(&pFlash);
|
||||||
373:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
373:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
||||||
ARM GAS /tmp/cc75hv6O.s page 8
|
ARM GAS /tmp/cc5GTpRB.s page 8
|
||||||
|
|
||||||
|
|
||||||
374:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** return status;
|
374:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** return status;
|
||||||
@ -478,7 +478,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
428:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @arg VOLTAGE_RANGE_3: when the device voltage range is 2.7V to 3.6V,
|
428:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @arg VOLTAGE_RANGE_3: when the device voltage range is 2.7V to 3.6V,
|
||||||
429:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * the operation will be done by word (32-bit)
|
429:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * the operation will be done by word (32-bit)
|
||||||
430:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @arg VOLTAGE_RANGE_4: when the device voltage range is 2.7V to 3.6V + External Vpp,
|
430:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @arg VOLTAGE_RANGE_4: when the device voltage range is 2.7V to 3.6V + External Vpp,
|
||||||
ARM GAS /tmp/cc75hv6O.s page 9
|
ARM GAS /tmp/cc5GTpRB.s page 9
|
||||||
|
|
||||||
|
|
||||||
431:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * the operation will be done by double word (64-bit)
|
431:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * the operation will be done by double word (64-bit)
|
||||||
@ -538,7 +538,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
51 0012 0D4A ldr r2, .L7
|
51 0012 0D4A ldr r2, .L7
|
||||||
52 0014 1369 ldr r3, [r2, #16]
|
52 0014 1369 ldr r3, [r2, #16]
|
||||||
53 0016 43F00403 orr r3, r3, #4
|
53 0016 43F00403 orr r3, r3, #4
|
||||||
ARM GAS /tmp/cc75hv6O.s page 10
|
ARM GAS /tmp/cc5GTpRB.s page 10
|
||||||
|
|
||||||
|
|
||||||
54 001a 1361 str r3, [r2, #16]
|
54 001a 1361 str r3, [r2, #16]
|
||||||
@ -598,7 +598,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
34:Drivers/CMSIS/Include/cmsis_gcc.h **** /* Fallback for __has_builtin */
|
34:Drivers/CMSIS/Include/cmsis_gcc.h **** /* Fallback for __has_builtin */
|
||||||
35:Drivers/CMSIS/Include/cmsis_gcc.h **** #ifndef __has_builtin
|
35:Drivers/CMSIS/Include/cmsis_gcc.h **** #ifndef __has_builtin
|
||||||
36:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __has_builtin(x) (0)
|
36:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __has_builtin(x) (0)
|
||||||
ARM GAS /tmp/cc75hv6O.s page 11
|
ARM GAS /tmp/cc5GTpRB.s page 11
|
||||||
|
|
||||||
|
|
||||||
37:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
37:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
||||||
@ -658,7 +658,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
91:Drivers/CMSIS/Include/cmsis_gcc.h **** #pragma GCC diagnostic pop
|
91:Drivers/CMSIS/Include/cmsis_gcc.h **** #pragma GCC diagnostic pop
|
||||||
92:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __UNALIGNED_UINT16_READ(addr) (((const struct T_UINT16_READ *)(const void *)(add
|
92:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __UNALIGNED_UINT16_READ(addr) (((const struct T_UINT16_READ *)(const void *)(add
|
||||||
93:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
93:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
||||||
ARM GAS /tmp/cc75hv6O.s page 12
|
ARM GAS /tmp/cc5GTpRB.s page 12
|
||||||
|
|
||||||
|
|
||||||
94:Drivers/CMSIS/Include/cmsis_gcc.h **** #ifndef __UNALIGNED_UINT32_WRITE
|
94:Drivers/CMSIS/Include/cmsis_gcc.h **** #ifndef __UNALIGNED_UINT32_WRITE
|
||||||
@ -718,7 +718,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
148:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the content of the Control Register.
|
148:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the content of the Control Register.
|
||||||
149:Drivers/CMSIS/Include/cmsis_gcc.h **** \return Control Register value
|
149:Drivers/CMSIS/Include/cmsis_gcc.h **** \return Control Register value
|
||||||
150:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
150:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
ARM GAS /tmp/cc75hv6O.s page 13
|
ARM GAS /tmp/cc5GTpRB.s page 13
|
||||||
|
|
||||||
|
|
||||||
151:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __get_CONTROL(void)
|
151:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __get_CONTROL(void)
|
||||||
@ -778,7 +778,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
205:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __get_IPSR(void)
|
205:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __get_IPSR(void)
|
||||||
206:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
206:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
207:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
207:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
||||||
ARM GAS /tmp/cc75hv6O.s page 14
|
ARM GAS /tmp/cc5GTpRB.s page 14
|
||||||
|
|
||||||
|
|
||||||
208:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
208:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
@ -838,7 +838,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
262:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __TZ_get_PSP_NS(void)
|
262:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __TZ_get_PSP_NS(void)
|
||||||
263:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
263:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
264:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
264:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
||||||
ARM GAS /tmp/cc75hv6O.s page 15
|
ARM GAS /tmp/cc5GTpRB.s page 15
|
||||||
|
|
||||||
|
|
||||||
265:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
265:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
@ -898,7 +898,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
319:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
319:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
320:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, msp_ns" : "=r" (result) );
|
320:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, msp_ns" : "=r" (result) );
|
||||||
321:Drivers/CMSIS/Include/cmsis_gcc.h **** return(result);
|
321:Drivers/CMSIS/Include/cmsis_gcc.h **** return(result);
|
||||||
ARM GAS /tmp/cc75hv6O.s page 16
|
ARM GAS /tmp/cc5GTpRB.s page 16
|
||||||
|
|
||||||
|
|
||||||
322:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
322:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
||||||
@ -958,7 +958,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
376:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
376:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
377:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
377:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
||||||
378:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Get Priority Mask
|
378:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Get Priority Mask
|
||||||
ARM GAS /tmp/cc75hv6O.s page 17
|
ARM GAS /tmp/cc5GTpRB.s page 17
|
||||||
|
|
||||||
|
|
||||||
379:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the current state of the priority mask bit from the Priority Mask Register.
|
379:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the current state of the priority mask bit from the Priority Mask Register.
|
||||||
@ -1018,7 +1018,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
433:Drivers/CMSIS/Include/cmsis_gcc.h **** (defined (__ARM_ARCH_8M_MAIN__ ) && (__ARM_ARCH_8M_MAIN__ == 1)) )
|
433:Drivers/CMSIS/Include/cmsis_gcc.h **** (defined (__ARM_ARCH_8M_MAIN__ ) && (__ARM_ARCH_8M_MAIN__ == 1)) )
|
||||||
434:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
434:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
||||||
435:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Enable FIQ
|
435:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Enable FIQ
|
||||||
ARM GAS /tmp/cc75hv6O.s page 18
|
ARM GAS /tmp/cc5GTpRB.s page 18
|
||||||
|
|
||||||
|
|
||||||
436:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Enables FIQ interrupts by clearing the F-bit in the CPSR.
|
436:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Enables FIQ interrupts by clearing the F-bit in the CPSR.
|
||||||
@ -1078,7 +1078,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
490:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
490:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
491:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE void __set_BASEPRI(uint32_t basePri)
|
491:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE void __set_BASEPRI(uint32_t basePri)
|
||||||
492:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
492:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
ARM GAS /tmp/cc75hv6O.s page 19
|
ARM GAS /tmp/cc5GTpRB.s page 19
|
||||||
|
|
||||||
|
|
||||||
493:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MSR basepri, %0" : : "r" (basePri) : "memory");
|
493:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MSR basepri, %0" : : "r" (basePri) : "memory");
|
||||||
@ -1138,7 +1138,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
547:Drivers/CMSIS/Include/cmsis_gcc.h **** return(result);
|
547:Drivers/CMSIS/Include/cmsis_gcc.h **** return(result);
|
||||||
548:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
548:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
||||||
549:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
549:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
||||||
ARM GAS /tmp/cc75hv6O.s page 20
|
ARM GAS /tmp/cc5GTpRB.s page 20
|
||||||
|
|
||||||
|
|
||||||
550:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
550:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
@ -1198,7 +1198,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
604:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
604:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
605:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (defined (__ARM_FEATURE_CMSE) && (__ARM_FEATURE_CMSE == 3))
|
605:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (defined (__ARM_FEATURE_CMSE) && (__ARM_FEATURE_CMSE == 3))
|
||||||
606:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
606:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
||||||
ARM GAS /tmp/cc75hv6O.s page 21
|
ARM GAS /tmp/cc5GTpRB.s page 21
|
||||||
|
|
||||||
|
|
||||||
607:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Get Process Stack Pointer Limit (non-secure)
|
607:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Get Process Stack Pointer Limit (non-secure)
|
||||||
@ -1258,7 +1258,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
661:Drivers/CMSIS/Include/cmsis_gcc.h **** // without main extensions, the non-secure PSPLIM is RAZ/WI
|
661:Drivers/CMSIS/Include/cmsis_gcc.h **** // without main extensions, the non-secure PSPLIM is RAZ/WI
|
||||||
662:Drivers/CMSIS/Include/cmsis_gcc.h **** (void)ProcStackPtrLimit;
|
662:Drivers/CMSIS/Include/cmsis_gcc.h **** (void)ProcStackPtrLimit;
|
||||||
663:Drivers/CMSIS/Include/cmsis_gcc.h **** #else
|
663:Drivers/CMSIS/Include/cmsis_gcc.h **** #else
|
||||||
ARM GAS /tmp/cc75hv6O.s page 22
|
ARM GAS /tmp/cc5GTpRB.s page 22
|
||||||
|
|
||||||
|
|
||||||
664:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MSR psplim_ns, %0\n" : : "r" (ProcStackPtrLimit));
|
664:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MSR psplim_ns, %0\n" : : "r" (ProcStackPtrLimit));
|
||||||
@ -1318,7 +1318,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
718:Drivers/CMSIS/Include/cmsis_gcc.h **** Devices without ARMv8-M Main Extensions (i.e. Cortex-M23) lack the non-secure
|
718:Drivers/CMSIS/Include/cmsis_gcc.h **** Devices without ARMv8-M Main Extensions (i.e. Cortex-M23) lack the non-secure
|
||||||
719:Drivers/CMSIS/Include/cmsis_gcc.h **** Stack Pointer Limit register hence the write is silently ignored in non-secure
|
719:Drivers/CMSIS/Include/cmsis_gcc.h **** Stack Pointer Limit register hence the write is silently ignored in non-secure
|
||||||
720:Drivers/CMSIS/Include/cmsis_gcc.h **** mode.
|
720:Drivers/CMSIS/Include/cmsis_gcc.h **** mode.
|
||||||
ARM GAS /tmp/cc75hv6O.s page 23
|
ARM GAS /tmp/cc5GTpRB.s page 23
|
||||||
|
|
||||||
|
|
||||||
721:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
721:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
@ -1378,7 +1378,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
775:Drivers/CMSIS/Include/cmsis_gcc.h **** #else
|
775:Drivers/CMSIS/Include/cmsis_gcc.h **** #else
|
||||||
776:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
776:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
||||||
777:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
777:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
ARM GAS /tmp/cc75hv6O.s page 24
|
ARM GAS /tmp/cc5GTpRB.s page 24
|
||||||
|
|
||||||
|
|
||||||
778:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("VMRS %0, fpscr" : "=r" (result) );
|
778:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("VMRS %0, fpscr" : "=r" (result) );
|
||||||
@ -1438,7 +1438,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
832:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
832:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
||||||
833:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief No Operation
|
833:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief No Operation
|
||||||
834:Drivers/CMSIS/Include/cmsis_gcc.h **** \details No Operation does nothing. This instruction can be used for code alignment purposes.
|
834:Drivers/CMSIS/Include/cmsis_gcc.h **** \details No Operation does nothing. This instruction can be used for code alignment purposes.
|
||||||
ARM GAS /tmp/cc75hv6O.s page 25
|
ARM GAS /tmp/cc5GTpRB.s page 25
|
||||||
|
|
||||||
|
|
||||||
835:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
835:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
@ -1498,7 +1498,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
79 .LBE7:
|
79 .LBE7:
|
||||||
80 .LBE6:
|
80 .LBE6:
|
||||||
467:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** }
|
467:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** }
|
||||||
ARM GAS /tmp/cc75hv6O.s page 26
|
ARM GAS /tmp/cc5GTpRB.s page 26
|
||||||
|
|
||||||
|
|
||||||
81 .loc 1 467 1 is_stmt 0 view .LVU17
|
81 .loc 1 467 1 is_stmt 0 view .LVU17
|
||||||
@ -1558,7 +1558,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
481:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @arg FLASH_VOLTAGE_RANGE_4: when the device voltage range is 2.7V to 3.6V + External
|
481:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @arg FLASH_VOLTAGE_RANGE_4: when the device voltage range is 2.7V to 3.6V + External
|
||||||
482:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * the operation will be done by double word (64-bit)
|
482:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * the operation will be done by double word (64-bit)
|
||||||
483:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** *
|
483:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** *
|
||||||
ARM GAS /tmp/cc75hv6O.s page 27
|
ARM GAS /tmp/cc5GTpRB.s page 27
|
||||||
|
|
||||||
|
|
||||||
484:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @retval None
|
484:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @retval None
|
||||||
@ -1618,7 +1618,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
122 @ frame_needed = 0, uses_anonymous_args = 0
|
122 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
123 @ link register save eliminated.
|
123 @ link register save eliminated.
|
||||||
535:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /* Return the FLASH write protection Register value */
|
535:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /* Return the FLASH write protection Register value */
|
||||||
ARM GAS /tmp/cc75hv6O.s page 28
|
ARM GAS /tmp/cc5GTpRB.s page 28
|
||||||
|
|
||||||
|
|
||||||
536:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** return ((uint32_t)(FLASH->OPTCR & 0x0FFF0000));
|
536:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** return ((uint32_t)(FLASH->OPTCR & 0x0FFF0000));
|
||||||
@ -1678,7 +1678,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
567:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @arg OB_NDBANK_SINGLE_BANK: enable 256 bits mode (Flash is a single bank)
|
567:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @arg OB_NDBANK_SINGLE_BANK: enable 256 bits mode (Flash is a single bank)
|
||||||
568:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @arg OB_NDBANK_DUAL_BANK: disable 256 bits mode (Flash is a dual bank in 128 bits mo
|
568:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @arg OB_NDBANK_DUAL_BANK: disable 256 bits mode (Flash is a dual bank in 128 bits mo
|
||||||
569:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @param NDBoot Flash Dual boot mode disable.
|
569:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @param NDBoot Flash Dual boot mode disable.
|
||||||
ARM GAS /tmp/cc75hv6O.s page 29
|
ARM GAS /tmp/cc5GTpRB.s page 29
|
||||||
|
|
||||||
|
|
||||||
570:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * This parameter can be one of the following values:
|
570:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * This parameter can be one of the following values:
|
||||||
@ -1738,7 +1738,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
619:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /* Return the User Option Byte */
|
619:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /* Return the User Option Byte */
|
||||||
620:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** return ((uint32_t)(FLASH->OPTCR & 0xF00000F0U));
|
620:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** return ((uint32_t)(FLASH->OPTCR & 0xF00000F0U));
|
||||||
154 .loc 1 620 3 view .LVU28
|
154 .loc 1 620 3 view .LVU28
|
||||||
ARM GAS /tmp/cc75hv6O.s page 30
|
ARM GAS /tmp/cc5GTpRB.s page 30
|
||||||
|
|
||||||
|
|
||||||
155 .loc 1 620 27 is_stmt 0 view .LVU29
|
155 .loc 1 620 27 is_stmt 0 view .LVU29
|
||||||
@ -1798,7 +1798,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
652:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
652:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
||||||
653:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /**
|
653:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /**
|
||||||
654:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @brief Erase the specified FLASH memory sector
|
654:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @brief Erase the specified FLASH memory sector
|
||||||
ARM GAS /tmp/cc75hv6O.s page 31
|
ARM GAS /tmp/cc5GTpRB.s page 31
|
||||||
|
|
||||||
|
|
||||||
655:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @param Sector FLASH sector to erase
|
655:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @param Sector FLASH sector to erase
|
||||||
@ -1858,7 +1858,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
709:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @retval uint32_t FLASH Write Protection Option Bytes value
|
709:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @retval uint32_t FLASH Write Protection Option Bytes value
|
||||||
710:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** */
|
710:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** */
|
||||||
711:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** static uint32_t FLASH_OB_GetWRP(void)
|
711:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** static uint32_t FLASH_OB_GetWRP(void)
|
||||||
ARM GAS /tmp/cc75hv6O.s page 32
|
ARM GAS /tmp/cc5GTpRB.s page 32
|
||||||
|
|
||||||
|
|
||||||
712:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** {
|
712:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** {
|
||||||
@ -1918,7 +1918,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
766:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** FLASH_OPTCR_nRST_STDBY | FLASH_OPTCR_IWDG_STOP | FLASH_OPTCR_IWDG_STDBY);
|
766:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** FLASH_OPTCR_nRST_STDBY | FLASH_OPTCR_IWDG_STOP | FLASH_OPTCR_IWDG_STDBY);
|
||||||
767:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
767:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
||||||
768:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** useroptionvalue = (Iwdg | Wwdg | Stop | Stdby | Iwdgstop | Iwdgstdby);
|
768:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** useroptionvalue = (Iwdg | Wwdg | Stop | Stdby | Iwdgstop | Iwdgstdby);
|
||||||
ARM GAS /tmp/cc75hv6O.s page 33
|
ARM GAS /tmp/cc5GTpRB.s page 33
|
||||||
|
|
||||||
|
|
||||||
769:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
769:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
||||||
@ -1978,7 +1978,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
823:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** }
|
823:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** }
|
||||||
824:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
824:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
||||||
825:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /**
|
825:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /**
|
||||||
ARM GAS /tmp/cc75hv6O.s page 34
|
ARM GAS /tmp/cc5GTpRB.s page 34
|
||||||
|
|
||||||
|
|
||||||
826:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @brief Disable the write protection of the desired bank1 or bank 2 sectors
|
826:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @brief Disable the write protection of the desired bank1 or bank 2 sectors
|
||||||
@ -2038,7 +2038,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
880:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /* Wait for last operation to be completed */
|
880:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** /* Wait for last operation to be completed */
|
||||||
881:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** status = FLASH_WaitForLastOperation((uint32_t)FLASH_TIMEOUT_VALUE);
|
881:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** status = FLASH_WaitForLastOperation((uint32_t)FLASH_TIMEOUT_VALUE);
|
||||||
882:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
882:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
||||||
ARM GAS /tmp/cc75hv6O.s page 35
|
ARM GAS /tmp/cc5GTpRB.s page 35
|
||||||
|
|
||||||
|
|
||||||
883:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** if(status == HAL_OK)
|
883:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** if(status == HAL_OK)
|
||||||
@ -2098,7 +2098,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
206 .align 1
|
206 .align 1
|
||||||
207 .syntax unified
|
207 .syntax unified
|
||||||
208 .thumb
|
208 .thumb
|
||||||
ARM GAS /tmp/cc75hv6O.s page 36
|
ARM GAS /tmp/cc5GTpRB.s page 36
|
||||||
|
|
||||||
|
|
||||||
209 .thumb_func
|
209 .thumb_func
|
||||||
@ -2158,7 +2158,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
962:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @arg OB_RDP_LEVEL_1: Read protection of the memory
|
962:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @arg OB_RDP_LEVEL_1: Read protection of the memory
|
||||||
963:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @arg OB_RDP_LEVEL_2: Full chip protection
|
963:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @arg OB_RDP_LEVEL_2: Full chip protection
|
||||||
964:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** */
|
964:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** */
|
||||||
ARM GAS /tmp/cc75hv6O.s page 37
|
ARM GAS /tmp/cc5GTpRB.s page 37
|
||||||
|
|
||||||
|
|
||||||
965:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** static uint8_t FLASH_OB_GetRDP(void)
|
965:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** static uint8_t FLASH_OB_GetRDP(void)
|
||||||
@ -2218,7 +2218,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
250 .section .text.FLASH_OB_GetBOR,"ax",%progbits
|
250 .section .text.FLASH_OB_GetBOR,"ax",%progbits
|
||||||
251 .align 1
|
251 .align 1
|
||||||
252 .syntax unified
|
252 .syntax unified
|
||||||
ARM GAS /tmp/cc75hv6O.s page 38
|
ARM GAS /tmp/cc5GTpRB.s page 38
|
||||||
|
|
||||||
|
|
||||||
253 .thumb
|
253 .thumb
|
||||||
@ -2278,7 +2278,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
1006:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** *
|
1006:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** *
|
||||||
1007:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @retval uint32_t Boot Base Address:
|
1007:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * @retval uint32_t Boot Base Address:
|
||||||
1008:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * - OB_BOOTADDR_ITCM_RAM : Boot from ITCM RAM (0x00000000)
|
1008:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * - OB_BOOTADDR_ITCM_RAM : Boot from ITCM RAM (0x00000000)
|
||||||
ARM GAS /tmp/cc75hv6O.s page 39
|
ARM GAS /tmp/cc5GTpRB.s page 39
|
||||||
|
|
||||||
|
|
||||||
1009:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * - OB_BOOTADDR_SYSTEM : Boot from System memory bootloader (0x00100000)
|
1009:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** * - OB_BOOTADDR_SYSTEM : Boot from System memory bootloader (0x00100000)
|
||||||
@ -2338,7 +2338,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
316 .loc 1 1023 13 view .LVU63
|
316 .loc 1 1023 13 view .LVU63
|
||||||
317 0010 80B2 uxth r0, r0
|
317 0010 80B2 uxth r0, r0
|
||||||
318 .LVL15:
|
318 .LVL15:
|
||||||
ARM GAS /tmp/cc75hv6O.s page 40
|
ARM GAS /tmp/cc5GTpRB.s page 40
|
||||||
|
|
||||||
|
|
||||||
1023:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** }
|
1023:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** }
|
||||||
@ -2398,7 +2398,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
363 .loc 1 819 18 is_stmt 0 view .LVU75
|
363 .loc 1 819 18 is_stmt 0 view .LVU75
|
||||||
364 000e 034A ldr r2, .L35
|
364 000e 034A ldr r2, .L35
|
||||||
365 0010 5369 ldr r3, [r2, #20]
|
365 0010 5369 ldr r3, [r2, #20]
|
||||||
ARM GAS /tmp/cc75hv6O.s page 41
|
ARM GAS /tmp/cc5GTpRB.s page 41
|
||||||
|
|
||||||
|
|
||||||
366 0012 23EA0404 bic r4, r3, r4
|
366 0012 23EA0404 bic r4, r3, r4
|
||||||
@ -2458,7 +2458,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
852:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** {
|
852:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** {
|
||||||
412 .loc 1 852 3 is_stmt 1 view .LVU86
|
412 .loc 1 852 3 is_stmt 1 view .LVU86
|
||||||
852:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** {
|
852:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** {
|
||||||
ARM GAS /tmp/cc75hv6O.s page 42
|
ARM GAS /tmp/cc5GTpRB.s page 42
|
||||||
|
|
||||||
|
|
||||||
413 .loc 1 852 5 is_stmt 0 view .LVU87
|
413 .loc 1 852 5 is_stmt 0 view .LVU87
|
||||||
@ -2518,7 +2518,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
881:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
881:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
||||||
459 .loc 1 881 12 is_stmt 0 view .LVU98
|
459 .loc 1 881 12 is_stmt 0 view .LVU98
|
||||||
460 0004 4CF25030 movw r0, #50000
|
460 0004 4CF25030 movw r0, #50000
|
||||||
ARM GAS /tmp/cc75hv6O.s page 43
|
ARM GAS /tmp/cc5GTpRB.s page 43
|
||||||
|
|
||||||
|
|
||||||
461 .LVL28:
|
461 .LVL28:
|
||||||
@ -2578,7 +2578,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
508 0004 0C46 mov r4, r1
|
508 0004 0C46 mov r4, r1
|
||||||
509 0006 1646 mov r6, r2
|
509 0006 1646 mov r6, r2
|
||||||
510 0008 1D46 mov r5, r3
|
510 0008 1D46 mov r5, r3
|
||||||
ARM GAS /tmp/cc75hv6O.s page 44
|
ARM GAS /tmp/cc5GTpRB.s page 44
|
||||||
|
|
||||||
|
|
||||||
579:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** uint32_t useroptionvalue = 0x00;
|
579:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** uint32_t useroptionvalue = 0x00;
|
||||||
@ -2638,7 +2638,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
543 001e 069C ldr r4, [sp, #24]
|
543 001e 069C ldr r4, [sp, #24]
|
||||||
544 .LVL35:
|
544 .LVL35:
|
||||||
603:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
603:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
||||||
ARM GAS /tmp/cc75hv6O.s page 45
|
ARM GAS /tmp/cc5GTpRB.s page 45
|
||||||
|
|
||||||
|
|
||||||
545 .loc 1 603 51 view .LVU130
|
545 .loc 1 603 51 view .LVU130
|
||||||
@ -2698,7 +2698,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
592 .cfi_startproc
|
592 .cfi_startproc
|
||||||
593 @ args = 0, pretend = 0, frame = 0
|
593 @ args = 0, pretend = 0, frame = 0
|
||||||
594 @ frame_needed = 0, uses_anonymous_args = 0
|
594 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
ARM GAS /tmp/cc75hv6O.s page 46
|
ARM GAS /tmp/cc5GTpRB.s page 46
|
||||||
|
|
||||||
|
|
||||||
933:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** HAL_StatusTypeDef status = HAL_OK;
|
933:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** HAL_StatusTypeDef status = HAL_OK;
|
||||||
@ -2758,7 +2758,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
635 0022 034B ldr r3, .L57
|
635 0022 034B ldr r3, .L57
|
||||||
636 0024 9A69 ldr r2, [r3, #24]
|
636 0024 9A69 ldr r2, [r3, #24]
|
||||||
637 0026 0349 ldr r1, .L57+4
|
637 0026 0349 ldr r1, .L57+4
|
||||||
ARM GAS /tmp/cc75hv6O.s page 47
|
ARM GAS /tmp/cc5GTpRB.s page 47
|
||||||
|
|
||||||
|
|
||||||
638 0028 1140 ands r1, r1, r2
|
638 0028 1140 ands r1, r1, r2
|
||||||
@ -2818,7 +2818,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
293:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
293:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
||||||
687 .loc 1 293 3 discriminator 2 view .LVU161
|
687 .loc 1 293 3 discriminator 2 view .LVU161
|
||||||
296:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** {
|
296:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** {
|
||||||
ARM GAS /tmp/cc75hv6O.s page 48
|
ARM GAS /tmp/cc5GTpRB.s page 48
|
||||||
|
|
||||||
|
|
||||||
688 .loc 1 296 3 discriminator 2 view .LVU162
|
688 .loc 1 296 3 discriminator 2 view .LVU162
|
||||||
@ -2878,7 +2878,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
312:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** {
|
312:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** {
|
||||||
727 .loc 1 312 3 is_stmt 1 view .LVU178
|
727 .loc 1 312 3 is_stmt 1 view .LVU178
|
||||||
312:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** {
|
312:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** {
|
||||||
ARM GAS /tmp/cc75hv6O.s page 49
|
ARM GAS /tmp/cc5GTpRB.s page 49
|
||||||
|
|
||||||
|
|
||||||
728 .loc 1 312 14 is_stmt 0 view .LVU179
|
728 .loc 1 312 14 is_stmt 0 view .LVU179
|
||||||
@ -2938,7 +2938,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
372:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
372:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
||||||
767 .loc 1 372 3 view .LVU195
|
767 .loc 1 372 3 view .LVU195
|
||||||
374:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** }
|
374:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** }
|
||||||
ARM GAS /tmp/cc75hv6O.s page 50
|
ARM GAS /tmp/cc5GTpRB.s page 50
|
||||||
|
|
||||||
|
|
||||||
768 .loc 1 374 3 view .LVU196
|
768 .loc 1 374 3 view .LVU196
|
||||||
@ -2998,7 +2998,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
812 .loc 1 342 5 is_stmt 1 view .LVU206
|
812 .loc 1 342 5 is_stmt 1 view .LVU206
|
||||||
342:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** }
|
342:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** }
|
||||||
813 .loc 1 342 14 is_stmt 0 view .LVU207
|
813 .loc 1 342 14 is_stmt 0 view .LVU207
|
||||||
ARM GAS /tmp/cc75hv6O.s page 51
|
ARM GAS /tmp/cc5GTpRB.s page 51
|
||||||
|
|
||||||
|
|
||||||
814 009e 207C ldrb r0, [r4, #16] @ zero_extendqisi2
|
814 009e 207C ldrb r0, [r4, #16] @ zero_extendqisi2
|
||||||
@ -3058,7 +3058,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
856 .L80:
|
856 .L80:
|
||||||
857 00c0 00000000 .word pFlash
|
857 00c0 00000000 .word pFlash
|
||||||
858 .cfi_endproc
|
858 .cfi_endproc
|
||||||
ARM GAS /tmp/cc75hv6O.s page 52
|
ARM GAS /tmp/cc5GTpRB.s page 52
|
||||||
|
|
||||||
|
|
||||||
859 .LFE143:
|
859 .LFE143:
|
||||||
@ -3118,7 +3118,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
396:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
396:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
||||||
903 .loc 1 396 23 view .LVU232
|
903 .loc 1 396 23 view .LVU232
|
||||||
904 0018 6061 str r0, [r4, #20]
|
904 0018 6061 str r0, [r4, #20]
|
||||||
ARM GAS /tmp/cc75hv6O.s page 53
|
ARM GAS /tmp/cc5GTpRB.s page 53
|
||||||
|
|
||||||
|
|
||||||
399:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
399:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
||||||
@ -3178,7 +3178,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
491:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** assert_param(IS_VOLTAGERANGE(VoltageRange));
|
491:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** assert_param(IS_VOLTAGERANGE(VoltageRange));
|
||||||
948 .loc 1 491 3 view .LVU246
|
948 .loc 1 491 3 view .LVU246
|
||||||
492:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
492:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
||||||
ARM GAS /tmp/cc75hv6O.s page 54
|
ARM GAS /tmp/cc5GTpRB.s page 54
|
||||||
|
|
||||||
|
|
||||||
949 .loc 1 492 3 view .LVU247
|
949 .loc 1 492 3 view .LVU247
|
||||||
@ -3238,7 +3238,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
987 .loc 1 518 13 view .LVU263
|
987 .loc 1 518 13 view .LVU263
|
||||||
988 0024 21F44071 bic r1, r1, #768
|
988 0024 21F44071 bic r1, r1, #768
|
||||||
989 0028 1961 str r1, [r3, #16]
|
989 0028 1961 str r1, [r3, #16]
|
||||||
ARM GAS /tmp/cc75hv6O.s page 55
|
ARM GAS /tmp/cc5GTpRB.s page 55
|
||||||
|
|
||||||
|
|
||||||
519:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** CLEAR_BIT(FLASH->CR, FLASH_CR_SNB);
|
519:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** CLEAR_BIT(FLASH->CR, FLASH_CR_SNB);
|
||||||
@ -3298,7 +3298,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
1032 0058 DFE7 b .L85
|
1032 0058 DFE7 b .L85
|
||||||
1033 .L92:
|
1033 .L92:
|
||||||
1034 005a 00BF .align 2
|
1034 005a 00BF .align 2
|
||||||
ARM GAS /tmp/cc75hv6O.s page 56
|
ARM GAS /tmp/cc5GTpRB.s page 56
|
||||||
|
|
||||||
|
|
||||||
1035 .L91:
|
1035 .L91:
|
||||||
@ -3358,7 +3358,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
1080 .loc 1 168 12 is_stmt 0 discriminator 2 view .LVU287
|
1080 .loc 1 168 12 is_stmt 0 discriminator 2 view .LVU287
|
||||||
1081 0014 4CF25030 movw r0, #50000
|
1081 0014 4CF25030 movw r0, #50000
|
||||||
1082 .LVL80:
|
1082 .LVL80:
|
||||||
ARM GAS /tmp/cc75hv6O.s page 57
|
ARM GAS /tmp/cc5GTpRB.s page 57
|
||||||
|
|
||||||
|
|
||||||
168:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
168:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c ****
|
||||||
@ -3418,7 +3418,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
1119 .loc 1 198 9 is_stmt 0 view .LVU305
|
1119 .loc 1 198 9 is_stmt 0 view .LVU305
|
||||||
1120 003a 2846 mov r0, r5
|
1120 003a 2846 mov r0, r5
|
||||||
1121 003c FFF7FEFF bl FLASH_Erase_Sector
|
1121 003c FFF7FEFF bl FLASH_Erase_Sector
|
||||||
ARM GAS /tmp/cc75hv6O.s page 58
|
ARM GAS /tmp/cc5GTpRB.s page 58
|
||||||
|
|
||||||
|
|
||||||
1122 .LVL84:
|
1122 .LVL84:
|
||||||
@ -3478,7 +3478,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
1162 006e 1069 ldr r0, [r2, #16]
|
1162 006e 1069 ldr r0, [r2, #16]
|
||||||
1163 0070 084B ldr r3, .L107+8
|
1163 0070 084B ldr r3, .L107+8
|
||||||
1164 0072 0340 ands r3, r3, r0
|
1164 0072 0340 ands r3, r3, r0
|
||||||
ARM GAS /tmp/cc75hv6O.s page 59
|
ARM GAS /tmp/cc5GTpRB.s page 59
|
||||||
|
|
||||||
|
|
||||||
1165 0074 1361 str r3, [r2, #16]
|
1165 0074 1361 str r3, [r2, #16]
|
||||||
@ -3538,7 +3538,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
1208 .LFE141:
|
1208 .LFE141:
|
||||||
1210 .section .text.HAL_FLASHEx_Erase_IT,"ax",%progbits
|
1210 .section .text.HAL_FLASHEx_Erase_IT,"ax",%progbits
|
||||||
1211 .align 1
|
1211 .align 1
|
||||||
ARM GAS /tmp/cc75hv6O.s page 60
|
ARM GAS /tmp/cc5GTpRB.s page 60
|
||||||
|
|
||||||
|
|
||||||
1212 .global HAL_FLASHEx_Erase_IT
|
1212 .global HAL_FLASHEx_Erase_IT
|
||||||
@ -3598,7 +3598,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
1256 0024 DA60 str r2, [r3, #12]
|
1256 0024 DA60 str r2, [r3, #12]
|
||||||
249:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** {
|
249:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** {
|
||||||
1257 .loc 1 249 3 discriminator 2 view .LVU342
|
1257 .loc 1 249 3 discriminator 2 view .LVU342
|
||||||
ARM GAS /tmp/cc75hv6O.s page 61
|
ARM GAS /tmp/cc5GTpRB.s page 61
|
||||||
|
|
||||||
|
|
||||||
249:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** {
|
249:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** {
|
||||||
@ -3658,7 +3658,7 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
1294 0046 08BD pop {r3, pc}
|
1294 0046 08BD pop {r3, pc}
|
||||||
1295 .LVL101:
|
1295 .LVL101:
|
||||||
1296 .L114:
|
1296 .L114:
|
||||||
ARM GAS /tmp/cc75hv6O.s page 62
|
ARM GAS /tmp/cc5GTpRB.s page 62
|
||||||
|
|
||||||
|
|
||||||
252:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** #if defined (FLASH_OPTCR_nDBANK)
|
252:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c **** #if defined (FLASH_OPTCR_nDBANK)
|
||||||
@ -3704,61 +3704,61 @@ ARM GAS /tmp/cc75hv6O.s page 1
|
|||||||
1331 .file 5 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h"
|
1331 .file 5 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h"
|
||||||
1332 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash.h"
|
1332 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash.h"
|
||||||
1333 .file 7 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash_ex.h"
|
1333 .file 7 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash_ex.h"
|
||||||
ARM GAS /tmp/cc75hv6O.s page 63
|
ARM GAS /tmp/cc5GTpRB.s page 63
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 stm32f7xx_hal_flash_ex.c
|
*ABS*:0000000000000000 stm32f7xx_hal_flash_ex.c
|
||||||
/tmp/cc75hv6O.s:17 .text.FLASH_MassErase:0000000000000000 $t
|
/tmp/cc5GTpRB.s:17 .text.FLASH_MassErase:0000000000000000 $t
|
||||||
/tmp/cc75hv6O.s:24 .text.FLASH_MassErase:0000000000000000 FLASH_MassErase
|
/tmp/cc5GTpRB.s:24 .text.FLASH_MassErase:0000000000000000 FLASH_MassErase
|
||||||
/tmp/cc75hv6O.s:106 .text.FLASH_MassErase:0000000000000048 $d
|
/tmp/cc5GTpRB.s:106 .text.FLASH_MassErase:0000000000000048 $d
|
||||||
/tmp/cc75hv6O.s:111 .text.FLASH_OB_GetWRP:0000000000000000 $t
|
/tmp/cc5GTpRB.s:111 .text.FLASH_OB_GetWRP:0000000000000000 $t
|
||||||
/tmp/cc75hv6O.s:117 .text.FLASH_OB_GetWRP:0000000000000000 FLASH_OB_GetWRP
|
/tmp/cc5GTpRB.s:117 .text.FLASH_OB_GetWRP:0000000000000000 FLASH_OB_GetWRP
|
||||||
/tmp/cc75hv6O.s:135 .text.FLASH_OB_GetWRP:000000000000000c $d
|
/tmp/cc5GTpRB.s:135 .text.FLASH_OB_GetWRP:000000000000000c $d
|
||||||
/tmp/cc75hv6O.s:141 .text.FLASH_OB_GetUser:0000000000000000 $t
|
/tmp/cc5GTpRB.s:141 .text.FLASH_OB_GetUser:0000000000000000 $t
|
||||||
/tmp/cc75hv6O.s:147 .text.FLASH_OB_GetUser:0000000000000000 FLASH_OB_GetUser
|
/tmp/cc5GTpRB.s:147 .text.FLASH_OB_GetUser:0000000000000000 FLASH_OB_GetUser
|
||||||
/tmp/cc75hv6O.s:165 .text.FLASH_OB_GetUser:000000000000000c $d
|
/tmp/cc5GTpRB.s:165 .text.FLASH_OB_GetUser:000000000000000c $d
|
||||||
/tmp/cc75hv6O.s:171 .text.FLASH_OB_BOR_LevelConfig:0000000000000000 $t
|
/tmp/cc5GTpRB.s:171 .text.FLASH_OB_BOR_LevelConfig:0000000000000000 $t
|
||||||
/tmp/cc75hv6O.s:177 .text.FLASH_OB_BOR_LevelConfig:0000000000000000 FLASH_OB_BOR_LevelConfig
|
/tmp/cc5GTpRB.s:177 .text.FLASH_OB_BOR_LevelConfig:0000000000000000 FLASH_OB_BOR_LevelConfig
|
||||||
/tmp/cc75hv6O.s:201 .text.FLASH_OB_BOR_LevelConfig:0000000000000010 $d
|
/tmp/cc5GTpRB.s:201 .text.FLASH_OB_BOR_LevelConfig:0000000000000010 $d
|
||||||
/tmp/cc75hv6O.s:206 .text.FLASH_OB_GetRDP:0000000000000000 $t
|
/tmp/cc5GTpRB.s:206 .text.FLASH_OB_GetRDP:0000000000000000 $t
|
||||||
/tmp/cc75hv6O.s:212 .text.FLASH_OB_GetRDP:0000000000000000 FLASH_OB_GetRDP
|
/tmp/cc5GTpRB.s:212 .text.FLASH_OB_GetRDP:0000000000000000 FLASH_OB_GetRDP
|
||||||
/tmp/cc75hv6O.s:246 .text.FLASH_OB_GetRDP:0000000000000018 $d
|
/tmp/cc5GTpRB.s:246 .text.FLASH_OB_GetRDP:0000000000000018 $d
|
||||||
/tmp/cc75hv6O.s:251 .text.FLASH_OB_GetBOR:0000000000000000 $t
|
/tmp/cc5GTpRB.s:251 .text.FLASH_OB_GetBOR:0000000000000000 $t
|
||||||
/tmp/cc75hv6O.s:257 .text.FLASH_OB_GetBOR:0000000000000000 FLASH_OB_GetBOR
|
/tmp/cc5GTpRB.s:257 .text.FLASH_OB_GetBOR:0000000000000000 FLASH_OB_GetBOR
|
||||||
/tmp/cc75hv6O.s:274 .text.FLASH_OB_GetBOR:000000000000000c $d
|
/tmp/cc5GTpRB.s:274 .text.FLASH_OB_GetBOR:000000000000000c $d
|
||||||
/tmp/cc75hv6O.s:279 .text.FLASH_OB_GetBootAddress:0000000000000000 $t
|
/tmp/cc5GTpRB.s:279 .text.FLASH_OB_GetBootAddress:0000000000000000 $t
|
||||||
/tmp/cc75hv6O.s:285 .text.FLASH_OB_GetBootAddress:0000000000000000 FLASH_OB_GetBootAddress
|
/tmp/cc5GTpRB.s:285 .text.FLASH_OB_GetBootAddress:0000000000000000 FLASH_OB_GetBootAddress
|
||||||
/tmp/cc75hv6O.s:324 .text.FLASH_OB_GetBootAddress:0000000000000014 $d
|
/tmp/cc5GTpRB.s:324 .text.FLASH_OB_GetBootAddress:0000000000000014 $d
|
||||||
/tmp/cc75hv6O.s:329 .text.FLASH_OB_EnableWRP:0000000000000000 $t
|
/tmp/cc5GTpRB.s:329 .text.FLASH_OB_EnableWRP:0000000000000000 $t
|
||||||
/tmp/cc75hv6O.s:335 .text.FLASH_OB_EnableWRP:0000000000000000 FLASH_OB_EnableWRP
|
/tmp/cc5GTpRB.s:335 .text.FLASH_OB_EnableWRP:0000000000000000 FLASH_OB_EnableWRP
|
||||||
/tmp/cc75hv6O.s:377 .text.FLASH_OB_EnableWRP:000000000000001c $d
|
/tmp/cc5GTpRB.s:377 .text.FLASH_OB_EnableWRP:000000000000001c $d
|
||||||
/tmp/cc75hv6O.s:382 .text.FLASH_OB_DisableWRP:0000000000000000 $t
|
/tmp/cc5GTpRB.s:382 .text.FLASH_OB_DisableWRP:0000000000000000 $t
|
||||||
/tmp/cc75hv6O.s:388 .text.FLASH_OB_DisableWRP:0000000000000000 FLASH_OB_DisableWRP
|
/tmp/cc5GTpRB.s:388 .text.FLASH_OB_DisableWRP:0000000000000000 FLASH_OB_DisableWRP
|
||||||
/tmp/cc75hv6O.s:430 .text.FLASH_OB_DisableWRP:0000000000000018 $d
|
/tmp/cc5GTpRB.s:430 .text.FLASH_OB_DisableWRP:0000000000000018 $d
|
||||||
/tmp/cc75hv6O.s:435 .text.FLASH_OB_RDP_LevelConfig:0000000000000000 $t
|
/tmp/cc5GTpRB.s:435 .text.FLASH_OB_RDP_LevelConfig:0000000000000000 $t
|
||||||
/tmp/cc75hv6O.s:441 .text.FLASH_OB_RDP_LevelConfig:0000000000000000 FLASH_OB_RDP_LevelConfig
|
/tmp/cc5GTpRB.s:441 .text.FLASH_OB_RDP_LevelConfig:0000000000000000 FLASH_OB_RDP_LevelConfig
|
||||||
/tmp/cc75hv6O.s:479 .text.FLASH_OB_RDP_LevelConfig:0000000000000014 $d
|
/tmp/cc5GTpRB.s:479 .text.FLASH_OB_RDP_LevelConfig:0000000000000014 $d
|
||||||
/tmp/cc75hv6O.s:484 .text.FLASH_OB_UserConfig:0000000000000000 $t
|
/tmp/cc5GTpRB.s:484 .text.FLASH_OB_UserConfig:0000000000000000 $t
|
||||||
/tmp/cc75hv6O.s:490 .text.FLASH_OB_UserConfig:0000000000000000 FLASH_OB_UserConfig
|
/tmp/cc5GTpRB.s:490 .text.FLASH_OB_UserConfig:0000000000000000 FLASH_OB_UserConfig
|
||||||
/tmp/cc75hv6O.s:576 .text.FLASH_OB_UserConfig:000000000000003c $d
|
/tmp/cc5GTpRB.s:576 .text.FLASH_OB_UserConfig:000000000000003c $d
|
||||||
/tmp/cc75hv6O.s:582 .text.FLASH_OB_BootAddressConfig:0000000000000000 $t
|
/tmp/cc5GTpRB.s:582 .text.FLASH_OB_BootAddressConfig:0000000000000000 $t
|
||||||
/tmp/cc75hv6O.s:588 .text.FLASH_OB_BootAddressConfig:0000000000000000 FLASH_OB_BootAddressConfig
|
/tmp/cc5GTpRB.s:588 .text.FLASH_OB_BootAddressConfig:0000000000000000 FLASH_OB_BootAddressConfig
|
||||||
/tmp/cc75hv6O.s:645 .text.FLASH_OB_BootAddressConfig:0000000000000030 $d
|
/tmp/cc5GTpRB.s:645 .text.FLASH_OB_BootAddressConfig:0000000000000030 $d
|
||||||
/tmp/cc75hv6O.s:651 .text.HAL_FLASHEx_OBProgram:0000000000000000 $t
|
/tmp/cc5GTpRB.s:651 .text.HAL_FLASHEx_OBProgram:0000000000000000 $t
|
||||||
/tmp/cc75hv6O.s:658 .text.HAL_FLASHEx_OBProgram:0000000000000000 HAL_FLASHEx_OBProgram
|
/tmp/cc5GTpRB.s:658 .text.HAL_FLASHEx_OBProgram:0000000000000000 HAL_FLASHEx_OBProgram
|
||||||
/tmp/cc75hv6O.s:857 .text.HAL_FLASHEx_OBProgram:00000000000000c0 $d
|
/tmp/cc5GTpRB.s:857 .text.HAL_FLASHEx_OBProgram:00000000000000c0 $d
|
||||||
/tmp/cc75hv6O.s:862 .text.HAL_FLASHEx_OBGetConfig:0000000000000000 $t
|
/tmp/cc5GTpRB.s:862 .text.HAL_FLASHEx_OBGetConfig:0000000000000000 $t
|
||||||
/tmp/cc75hv6O.s:869 .text.HAL_FLASHEx_OBGetConfig:0000000000000000 HAL_FLASHEx_OBGetConfig
|
/tmp/cc5GTpRB.s:869 .text.HAL_FLASHEx_OBGetConfig:0000000000000000 HAL_FLASHEx_OBGetConfig
|
||||||
/tmp/cc75hv6O.s:932 .text.FLASH_Erase_Sector:0000000000000000 $t
|
/tmp/cc5GTpRB.s:932 .text.FLASH_Erase_Sector:0000000000000000 $t
|
||||||
/tmp/cc75hv6O.s:939 .text.FLASH_Erase_Sector:0000000000000000 FLASH_Erase_Sector
|
/tmp/cc5GTpRB.s:939 .text.FLASH_Erase_Sector:0000000000000000 FLASH_Erase_Sector
|
||||||
/tmp/cc75hv6O.s:1036 .text.FLASH_Erase_Sector:000000000000005c $d
|
/tmp/cc5GTpRB.s:1036 .text.FLASH_Erase_Sector:000000000000005c $d
|
||||||
/tmp/cc75hv6O.s:1041 .text.HAL_FLASHEx_Erase:0000000000000000 $t
|
/tmp/cc5GTpRB.s:1041 .text.HAL_FLASHEx_Erase:0000000000000000 $t
|
||||||
/tmp/cc75hv6O.s:1048 .text.HAL_FLASHEx_Erase:0000000000000000 HAL_FLASHEx_Erase
|
/tmp/cc5GTpRB.s:1048 .text.HAL_FLASHEx_Erase:0000000000000000 HAL_FLASHEx_Erase
|
||||||
/tmp/cc75hv6O.s:1204 .text.HAL_FLASHEx_Erase:000000000000008c $d
|
/tmp/cc5GTpRB.s:1204 .text.HAL_FLASHEx_Erase:000000000000008c $d
|
||||||
/tmp/cc75hv6O.s:1211 .text.HAL_FLASHEx_Erase_IT:0000000000000000 $t
|
/tmp/cc5GTpRB.s:1211 .text.HAL_FLASHEx_Erase_IT:0000000000000000 $t
|
||||||
/tmp/cc75hv6O.s:1218 .text.HAL_FLASHEx_Erase_IT:0000000000000000 HAL_FLASHEx_Erase_IT
|
/tmp/cc5GTpRB.s:1218 .text.HAL_FLASHEx_Erase_IT:0000000000000000 HAL_FLASHEx_Erase_IT
|
||||||
/tmp/cc75hv6O.s:1322 .text.HAL_FLASHEx_Erase_IT:0000000000000060 $d
|
/tmp/cc5GTpRB.s:1322 .text.HAL_FLASHEx_Erase_IT:0000000000000060 $d
|
||||||
|
|
||||||
UNDEFINED SYMBOLS
|
UNDEFINED SYMBOLS
|
||||||
FLASH_WaitForLastOperation
|
FLASH_WaitForLastOperation
|
||||||
|
|||||||
Binary file not shown.
@ -29,7 +29,9 @@ build/stm32f7xx_hal_gpio.o: \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
||||||
Inc/stm32f7xx_hal_conf.h:
|
Inc/stm32f7xx_hal_conf.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
||||||
@ -62,3 +64,5 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/ccw7msug.s page 1
|
ARM GAS /tmp/cccK3H6m.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
28:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** port bit of the General Purpose IO (GPIO) Ports, can be individually configured by software
|
28:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** port bit of the General Purpose IO (GPIO) Ports, can be individually configured by software
|
||||||
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** in several modes:
|
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** in several modes:
|
||||||
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** (+) Input mode
|
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** (+) Input mode
|
||||||
ARM GAS /tmp/ccw7msug.s page 2
|
ARM GAS /tmp/cccK3H6m.s page 2
|
||||||
|
|
||||||
|
|
||||||
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** (+) Analog mode
|
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** (+) Analog mode
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
85:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** (#) To set/reset the level of a pin configured in output mode use
|
85:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** (#) To set/reset the level of a pin configured in output mode use
|
||||||
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** HAL_GPIO_WritePin()/HAL_GPIO_TogglePin().
|
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** HAL_GPIO_WritePin()/HAL_GPIO_TogglePin().
|
||||||
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c ****
|
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c ****
|
||||||
ARM GAS /tmp/ccw7msug.s page 3
|
ARM GAS /tmp/cccK3H6m.s page 3
|
||||||
|
|
||||||
|
|
||||||
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** (#) To lock pin configuration until next reset use HAL_GPIO_LockPin().
|
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** (#) To lock pin configuration until next reset use HAL_GPIO_LockPin().
|
||||||
@ -178,7 +178,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
142:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** *
|
142:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** *
|
||||||
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** @verbatim
|
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** @verbatim
|
||||||
144:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** ===============================================================================
|
144:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** ===============================================================================
|
||||||
ARM GAS /tmp/ccw7msug.s page 4
|
ARM GAS /tmp/cccK3H6m.s page 4
|
||||||
|
|
||||||
|
|
||||||
145:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** ##### Initialization and de-initialization functions #####
|
145:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** ##### Initialization and de-initialization functions #####
|
||||||
@ -238,7 +238,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
51 .cfi_def_cfa_offset 16
|
51 .cfi_def_cfa_offset 16
|
||||||
52 .cfi_offset 4, -16
|
52 .cfi_offset 4, -16
|
||||||
53 .cfi_offset 5, -12
|
53 .cfi_offset 5, -12
|
||||||
ARM GAS /tmp/ccw7msug.s page 5
|
ARM GAS /tmp/cccK3H6m.s page 5
|
||||||
|
|
||||||
|
|
||||||
54 .cfi_offset 6, -8
|
54 .cfi_offset 6, -8
|
||||||
@ -298,7 +298,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
197:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** temp = GPIOx->OTYPER;
|
197:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** temp = GPIOx->OTYPER;
|
||||||
87 .loc 1 197 9 is_stmt 1 view .LVU26
|
87 .loc 1 197 9 is_stmt 1 view .LVU26
|
||||||
88 .loc 1 197 14 is_stmt 0 view .LVU27
|
88 .loc 1 197 14 is_stmt 0 view .LVU27
|
||||||
ARM GAS /tmp/ccw7msug.s page 6
|
ARM GAS /tmp/cccK3H6m.s page 6
|
||||||
|
|
||||||
|
|
||||||
89 0022 4568 ldr r5, [r0, #4]
|
89 0022 4568 ldr r5, [r0, #4]
|
||||||
@ -358,7 +358,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
118 003a 50F82460 ldr r6, [r0, r4, lsl #2]
|
118 003a 50F82460 ldr r6, [r0, r4, lsl #2]
|
||||||
119 .LVL11:
|
119 .LVL11:
|
||||||
223:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** temp &= ~((uint32_t)0xF << ((uint32_t)(position & (uint32_t)0x07) * 4)) ;
|
223:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** temp &= ~((uint32_t)0xF << ((uint32_t)(position & (uint32_t)0x07) * 4)) ;
|
||||||
ARM GAS /tmp/ccw7msug.s page 7
|
ARM GAS /tmp/cccK3H6m.s page 7
|
||||||
|
|
||||||
|
|
||||||
120 .loc 1 223 9 is_stmt 1 view .LVU41
|
120 .loc 1 223 9 is_stmt 1 view .LVU41
|
||||||
@ -418,7 +418,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
154 .loc 1 243 14 discriminator 40 view .LVU55
|
154 .loc 1 243 14 discriminator 40 view .LVU55
|
||||||
155 0064 2A43 orrs r2, r2, r5
|
155 0064 2A43 orrs r2, r2, r5
|
||||||
156 .LVL15:
|
156 .LVL15:
|
||||||
ARM GAS /tmp/ccw7msug.s page 8
|
ARM GAS /tmp/cccK3H6m.s page 8
|
||||||
|
|
||||||
|
|
||||||
244:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** SYSCFG->EXTICR[position >> 2] = temp;
|
244:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** SYSCFG->EXTICR[position >> 2] = temp;
|
||||||
@ -478,7 +478,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
257:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** if ((GPIO_Init->Mode & TRIGGER_FALLING) != 0x00u)
|
257:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** if ((GPIO_Init->Mode & TRIGGER_FALLING) != 0x00u)
|
||||||
198 .loc 1 257 9 is_stmt 1 view .LVU75
|
198 .loc 1 257 9 is_stmt 1 view .LVU75
|
||||||
199 .loc 1 257 23 is_stmt 0 view .LVU76
|
199 .loc 1 257 23 is_stmt 0 view .LVU76
|
||||||
ARM GAS /tmp/ccw7msug.s page 9
|
ARM GAS /tmp/cccK3H6m.s page 9
|
||||||
|
|
||||||
|
|
||||||
200 0090 4E68 ldr r6, [r1, #4]
|
200 0090 4E68 ldr r6, [r1, #4]
|
||||||
@ -538,7 +538,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
239 .LVL26:
|
239 .LVL26:
|
||||||
273:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** temp &= ~((uint32_t)iocurrent);
|
273:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** temp &= ~((uint32_t)iocurrent);
|
||||||
240 .loc 1 273 9 is_stmt 1 view .LVU95
|
240 .loc 1 273 9 is_stmt 1 view .LVU95
|
||||||
ARM GAS /tmp/ccw7msug.s page 10
|
ARM GAS /tmp/cccK3H6m.s page 10
|
||||||
|
|
||||||
|
|
||||||
241 .loc 1 273 14 is_stmt 0 view .LVU96
|
241 .loc 1 273 14 is_stmt 0 view .LVU96
|
||||||
@ -598,7 +598,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
281 .LVL33:
|
281 .LVL33:
|
||||||
182:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** {
|
182:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** {
|
||||||
282 .loc 1 182 5 is_stmt 1 view .LVU113
|
282 .loc 1 182 5 is_stmt 1 view .LVU113
|
||||||
ARM GAS /tmp/ccw7msug.s page 11
|
ARM GAS /tmp/cccK3H6m.s page 11
|
||||||
|
|
||||||
|
|
||||||
182:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** {
|
182:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** {
|
||||||
@ -658,7 +658,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
211:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** GPIOx->PUPDR = temp;
|
211:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** GPIOx->PUPDR = temp;
|
||||||
320 .loc 1 211 9 is_stmt 1 view .LVU131
|
320 .loc 1 211 9 is_stmt 1 view .LVU131
|
||||||
211:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** GPIOx->PUPDR = temp;
|
211:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** GPIOx->PUPDR = temp;
|
||||||
ARM GAS /tmp/ccw7msug.s page 12
|
ARM GAS /tmp/cccK3H6m.s page 12
|
||||||
|
|
||||||
|
|
||||||
321 .loc 1 211 28 is_stmt 0 view .LVU132
|
321 .loc 1 211 28 is_stmt 0 view .LVU132
|
||||||
@ -718,7 +718,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
358 .loc 1 231 33 view .LVU149
|
358 .loc 1 231 33 view .LVU149
|
||||||
359 0128 02F00302 and r2, r2, #3
|
359 0128 02F00302 and r2, r2, #3
|
||||||
231:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** GPIOx->MODER = temp;
|
231:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** GPIOx->MODER = temp;
|
||||||
ARM GAS /tmp/ccw7msug.s page 13
|
ARM GAS /tmp/cccK3H6m.s page 13
|
||||||
|
|
||||||
|
|
||||||
360 .loc 1 231 46 view .LVU150
|
360 .loc 1 231 46 view .LVU150
|
||||||
@ -778,7 +778,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
399 .LVL44:
|
399 .LVL44:
|
||||||
242:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** temp |= ((uint32_t)(GPIO_GET_INDEX(GPIOx)) << (4 * (position & 0x03)));
|
242:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** temp |= ((uint32_t)(GPIO_GET_INDEX(GPIOx)) << (4 * (position & 0x03)));
|
||||||
400 .loc 1 242 9 is_stmt 1 view .LVU166
|
400 .loc 1 242 9 is_stmt 1 view .LVU166
|
||||||
ARM GAS /tmp/ccw7msug.s page 14
|
ARM GAS /tmp/cccK3H6m.s page 14
|
||||||
|
|
||||||
|
|
||||||
242:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** temp |= ((uint32_t)(GPIO_GET_INDEX(GPIOx)) << (4 * (position & 0x03)));
|
242:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** temp |= ((uint32_t)(GPIO_GET_INDEX(GPIOx)) << (4 * (position & 0x03)));
|
||||||
@ -838,7 +838,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
442 01a8 9042 cmp r0, r2
|
442 01a8 9042 cmp r0, r2
|
||||||
443 01aa 16D0 beq .L20
|
443 01aa 16D0 beq .L20
|
||||||
243:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** SYSCFG->EXTICR[position >> 2] = temp;
|
243:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** SYSCFG->EXTICR[position >> 2] = temp;
|
||||||
ARM GAS /tmp/ccw7msug.s page 15
|
ARM GAS /tmp/cccK3H6m.s page 15
|
||||||
|
|
||||||
|
|
||||||
444 .loc 1 243 29 discriminator 15 view .LVU180
|
444 .loc 1 243 29 discriminator 15 view .LVU180
|
||||||
@ -898,7 +898,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
490 01e4 70BD pop {r4, r5, r6, pc}
|
490 01e4 70BD pop {r4, r5, r6, pc}
|
||||||
491 .LVL49:
|
491 .LVL49:
|
||||||
492 .L26:
|
492 .L26:
|
||||||
ARM GAS /tmp/ccw7msug.s page 16
|
ARM GAS /tmp/cccK3H6m.s page 16
|
||||||
|
|
||||||
|
|
||||||
493 .LCFI3:
|
493 .LCFI3:
|
||||||
@ -958,7 +958,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
301:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** /* Configure the port pins */
|
301:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** /* Configure the port pins */
|
||||||
302:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** for (position = 0; position < GPIO_NUMBER; position++)
|
302:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** for (position = 0; position < GPIO_NUMBER; position++)
|
||||||
531 .loc 1 302 3 view .LVU193
|
531 .loc 1 302 3 view .LVU193
|
||||||
ARM GAS /tmp/ccw7msug.s page 17
|
ARM GAS /tmp/cccK3H6m.s page 17
|
||||||
|
|
||||||
|
|
||||||
532 .loc 1 302 17 is_stmt 0 view .LVU194
|
532 .loc 1 302 17 is_stmt 0 view .LVU194
|
||||||
@ -1018,7 +1018,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
323:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c ****
|
323:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c ****
|
||||||
324:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** /* Configure the External Interrupt or event for the current IO */
|
324:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** /* Configure the External Interrupt or event for the current IO */
|
||||||
325:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** tmp = ((uint32_t)0x0F) << (4 * (position & 0x03));
|
325:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** tmp = ((uint32_t)0x0F) << (4 * (position & 0x03));
|
||||||
ARM GAS /tmp/ccw7msug.s page 18
|
ARM GAS /tmp/cccK3H6m.s page 18
|
||||||
|
|
||||||
|
|
||||||
326:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** SYSCFG->EXTICR[position >> 2] &= ~tmp;
|
326:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** SYSCFG->EXTICR[position >> 2] &= ~tmp;
|
||||||
@ -1078,7 +1078,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
342:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** GPIOx->OSPEEDR &= ~(GPIO_OSPEEDER_OSPEEDR0 << (position * 2));
|
342:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** GPIOx->OSPEEDR &= ~(GPIO_OSPEEDER_OSPEEDR0 << (position * 2));
|
||||||
603 .loc 1 342 7 is_stmt 1 view .LVU218
|
603 .loc 1 342 7 is_stmt 1 view .LVU218
|
||||||
604 .loc 1 342 22 is_stmt 0 view .LVU219
|
604 .loc 1 342 22 is_stmt 0 view .LVU219
|
||||||
ARM GAS /tmp/ccw7msug.s page 19
|
ARM GAS /tmp/cccK3H6m.s page 19
|
||||||
|
|
||||||
|
|
||||||
605 005a 8268 ldr r2, [r0, #8]
|
605 005a 8268 ldr r2, [r0, #8]
|
||||||
@ -1138,7 +1138,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
643 .loc 1 313 38 view .LVU235
|
643 .loc 1 313 38 view .LVU235
|
||||||
644 0088 4FEA8C0C lsl ip, ip, #2
|
644 0088 4FEA8C0C lsl ip, ip, #2
|
||||||
313:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** if (tmp == ((uint32_t)(GPIO_GET_INDEX(GPIOx)) << (4 * (position & 0x03))))
|
313:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** if (tmp == ((uint32_t)(GPIO_GET_INDEX(GPIOx)) << (4 * (position & 0x03))))
|
||||||
ARM GAS /tmp/ccw7msug.s page 20
|
ARM GAS /tmp/cccK3H6m.s page 20
|
||||||
|
|
||||||
|
|
||||||
645 .loc 1 313 32 view .LVU236
|
645 .loc 1 313 32 view .LVU236
|
||||||
@ -1198,7 +1198,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
314:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** {
|
314:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** {
|
||||||
688 .loc 1 314 30 discriminator 17 view .LVU248
|
688 .loc 1 314 30 discriminator 17 view .LVU248
|
||||||
689 00da 05F58065 add r5, r5, #1024
|
689 00da 05F58065 add r5, r5, #1024
|
||||||
ARM GAS /tmp/ccw7msug.s page 21
|
ARM GAS /tmp/cccK3H6m.s page 21
|
||||||
|
|
||||||
|
|
||||||
690 00de A842 cmp r0, r5
|
690 00de A842 cmp r0, r5
|
||||||
@ -1258,7 +1258,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
736 011a 25EA0605 bic r5, r5, r6
|
736 011a 25EA0605 bic r5, r5, r6
|
||||||
737 011e E560 str r5, [r4, #12]
|
737 011e E560 str r5, [r4, #12]
|
||||||
322:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c ****
|
322:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c ****
|
||||||
ARM GAS /tmp/ccw7msug.s page 22
|
ARM GAS /tmp/cccK3H6m.s page 22
|
||||||
|
|
||||||
|
|
||||||
738 .loc 1 322 9 is_stmt 1 view .LVU257
|
738 .loc 1 322 9 is_stmt 1 view .LVU257
|
||||||
@ -1318,7 +1318,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
785 .fpu fpv5-d16
|
785 .fpu fpv5-d16
|
||||||
787 HAL_GPIO_ReadPin:
|
787 HAL_GPIO_ReadPin:
|
||||||
788 .LVL66:
|
788 .LVL66:
|
||||||
ARM GAS /tmp/ccw7msug.s page 23
|
ARM GAS /tmp/cccK3H6m.s page 23
|
||||||
|
|
||||||
|
|
||||||
789 .LFB143:
|
789 .LFB143:
|
||||||
@ -1378,7 +1378,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
809 .L60:
|
809 .L60:
|
||||||
380:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** }
|
380:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** }
|
||||||
381:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** else
|
381:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** else
|
||||||
ARM GAS /tmp/ccw7msug.s page 24
|
ARM GAS /tmp/cccK3H6m.s page 24
|
||||||
|
|
||||||
|
|
||||||
382:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** {
|
382:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** {
|
||||||
@ -1438,7 +1438,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
837 .loc 1 410 3 view .LVU279
|
837 .loc 1 410 3 view .LVU279
|
||||||
838 .loc 1 410 6 is_stmt 0 view .LVU280
|
838 .loc 1 410 6 is_stmt 0 view .LVU280
|
||||||
839 0000 0AB1 cbz r2, .L62
|
839 0000 0AB1 cbz r2, .L62
|
||||||
ARM GAS /tmp/ccw7msug.s page 25
|
ARM GAS /tmp/cccK3H6m.s page 25
|
||||||
|
|
||||||
|
|
||||||
411:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** {
|
411:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** {
|
||||||
@ -1498,7 +1498,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
433:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c ****
|
433:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c ****
|
||||||
434:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** /* get current Output Data Register value */
|
434:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** /* get current Output Data Register value */
|
||||||
435:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** odr = GPIOx->ODR;
|
435:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** odr = GPIOx->ODR;
|
||||||
ARM GAS /tmp/ccw7msug.s page 26
|
ARM GAS /tmp/cccK3H6m.s page 26
|
||||||
|
|
||||||
|
|
||||||
874 .loc 1 435 3 view .LVU290
|
874 .loc 1 435 3 view .LVU290
|
||||||
@ -1558,7 +1558,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
912 .cfi_def_cfa_offset 8
|
912 .cfi_def_cfa_offset 8
|
||||||
454:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** __IO uint32_t tmp = GPIO_LCKR_LCKK;
|
454:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** __IO uint32_t tmp = GPIO_LCKR_LCKK;
|
||||||
913 .loc 1 454 3 is_stmt 1 view .LVU300
|
913 .loc 1 454 3 is_stmt 1 view .LVU300
|
||||||
ARM GAS /tmp/ccw7msug.s page 27
|
ARM GAS /tmp/cccK3H6m.s page 27
|
||||||
|
|
||||||
|
|
||||||
914 .loc 1 454 17 is_stmt 0 view .LVU301
|
914 .loc 1 454 17 is_stmt 0 view .LVU301
|
||||||
@ -1618,7 +1618,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
474:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** }
|
474:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** }
|
||||||
475:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** else
|
475:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** else
|
||||||
476:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** {
|
476:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** {
|
||||||
ARM GAS /tmp/ccw7msug.s page 28
|
ARM GAS /tmp/cccK3H6m.s page 28
|
||||||
|
|
||||||
|
|
||||||
477:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** return HAL_ERROR;
|
477:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** return HAL_ERROR;
|
||||||
@ -1678,7 +1678,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
501:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** __weak void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin)
|
501:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** __weak void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin)
|
||||||
502:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** {
|
502:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** {
|
||||||
979 .loc 1 502 1 is_stmt 1 view -0
|
979 .loc 1 502 1 is_stmt 1 view -0
|
||||||
ARM GAS /tmp/ccw7msug.s page 29
|
ARM GAS /tmp/cccK3H6m.s page 29
|
||||||
|
|
||||||
|
|
||||||
980 .cfi_startproc
|
980 .cfi_startproc
|
||||||
@ -1738,7 +1738,7 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
1023 .L73:
|
1023 .L73:
|
||||||
491:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** HAL_GPIO_EXTI_Callback(GPIO_Pin);
|
491:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c **** HAL_GPIO_EXTI_Callback(GPIO_Pin);
|
||||||
1024 .loc 1 491 5 is_stmt 1 view .LVU330
|
1024 .loc 1 491 5 is_stmt 1 view .LVU330
|
||||||
ARM GAS /tmp/ccw7msug.s page 30
|
ARM GAS /tmp/cccK3H6m.s page 30
|
||||||
|
|
||||||
|
|
||||||
1025 000c 024B ldr r3, .L74
|
1025 000c 024B ldr r3, .L74
|
||||||
@ -1763,29 +1763,29 @@ ARM GAS /tmp/ccw7msug.s page 1
|
|||||||
1043 .file 4 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h"
|
1043 .file 4 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h"
|
||||||
1044 .file 5 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h"
|
1044 .file 5 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h"
|
||||||
1045 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio.h"
|
1045 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio.h"
|
||||||
ARM GAS /tmp/ccw7msug.s page 31
|
ARM GAS /tmp/cccK3H6m.s page 31
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 stm32f7xx_hal_gpio.c
|
*ABS*:0000000000000000 stm32f7xx_hal_gpio.c
|
||||||
/tmp/ccw7msug.s:17 .text.HAL_GPIO_Init:0000000000000000 $t
|
/tmp/cccK3H6m.s:17 .text.HAL_GPIO_Init:0000000000000000 $t
|
||||||
/tmp/ccw7msug.s:25 .text.HAL_GPIO_Init:0000000000000000 HAL_GPIO_Init
|
/tmp/cccK3H6m.s:25 .text.HAL_GPIO_Init:0000000000000000 HAL_GPIO_Init
|
||||||
/tmp/ccw7msug.s:504 .text.HAL_GPIO_Init:00000000000001e8 $d
|
/tmp/cccK3H6m.s:504 .text.HAL_GPIO_Init:00000000000001e8 $d
|
||||||
/tmp/ccw7msug.s:512 .text.HAL_GPIO_DeInit:0000000000000000 $t
|
/tmp/cccK3H6m.s:512 .text.HAL_GPIO_DeInit:0000000000000000 $t
|
||||||
/tmp/ccw7msug.s:519 .text.HAL_GPIO_DeInit:0000000000000000 HAL_GPIO_DeInit
|
/tmp/cccK3H6m.s:519 .text.HAL_GPIO_DeInit:0000000000000000 HAL_GPIO_DeInit
|
||||||
/tmp/ccw7msug.s:773 .text.HAL_GPIO_DeInit:0000000000000140 $d
|
/tmp/cccK3H6m.s:773 .text.HAL_GPIO_DeInit:0000000000000140 $d
|
||||||
/tmp/ccw7msug.s:780 .text.HAL_GPIO_ReadPin:0000000000000000 $t
|
/tmp/cccK3H6m.s:780 .text.HAL_GPIO_ReadPin:0000000000000000 $t
|
||||||
/tmp/ccw7msug.s:787 .text.HAL_GPIO_ReadPin:0000000000000000 HAL_GPIO_ReadPin
|
/tmp/cccK3H6m.s:787 .text.HAL_GPIO_ReadPin:0000000000000000 HAL_GPIO_ReadPin
|
||||||
/tmp/ccw7msug.s:820 .text.HAL_GPIO_WritePin:0000000000000000 $t
|
/tmp/cccK3H6m.s:820 .text.HAL_GPIO_WritePin:0000000000000000 $t
|
||||||
/tmp/ccw7msug.s:827 .text.HAL_GPIO_WritePin:0000000000000000 HAL_GPIO_WritePin
|
/tmp/cccK3H6m.s:827 .text.HAL_GPIO_WritePin:0000000000000000 HAL_GPIO_WritePin
|
||||||
/tmp/ccw7msug.s:857 .text.HAL_GPIO_TogglePin:0000000000000000 $t
|
/tmp/cccK3H6m.s:857 .text.HAL_GPIO_TogglePin:0000000000000000 $t
|
||||||
/tmp/ccw7msug.s:864 .text.HAL_GPIO_TogglePin:0000000000000000 HAL_GPIO_TogglePin
|
/tmp/cccK3H6m.s:864 .text.HAL_GPIO_TogglePin:0000000000000000 HAL_GPIO_TogglePin
|
||||||
/tmp/ccw7msug.s:894 .text.HAL_GPIO_LockPin:0000000000000000 $t
|
/tmp/cccK3H6m.s:894 .text.HAL_GPIO_LockPin:0000000000000000 $t
|
||||||
/tmp/ccw7msug.s:901 .text.HAL_GPIO_LockPin:0000000000000000 HAL_GPIO_LockPin
|
/tmp/cccK3H6m.s:901 .text.HAL_GPIO_LockPin:0000000000000000 HAL_GPIO_LockPin
|
||||||
/tmp/ccw7msug.s:969 .text.HAL_GPIO_EXTI_Callback:0000000000000000 $t
|
/tmp/cccK3H6m.s:969 .text.HAL_GPIO_EXTI_Callback:0000000000000000 $t
|
||||||
/tmp/ccw7msug.s:976 .text.HAL_GPIO_EXTI_Callback:0000000000000000 HAL_GPIO_EXTI_Callback
|
/tmp/cccK3H6m.s:976 .text.HAL_GPIO_EXTI_Callback:0000000000000000 HAL_GPIO_EXTI_Callback
|
||||||
/tmp/ccw7msug.s:991 .text.HAL_GPIO_EXTI_IRQHandler:0000000000000000 $t
|
/tmp/cccK3H6m.s:991 .text.HAL_GPIO_EXTI_IRQHandler:0000000000000000 $t
|
||||||
/tmp/ccw7msug.s:998 .text.HAL_GPIO_EXTI_IRQHandler:0000000000000000 HAL_GPIO_EXTI_IRQHandler
|
/tmp/cccK3H6m.s:998 .text.HAL_GPIO_EXTI_IRQHandler:0000000000000000 HAL_GPIO_EXTI_IRQHandler
|
||||||
/tmp/ccw7msug.s:1035 .text.HAL_GPIO_EXTI_IRQHandler:0000000000000018 $d
|
/tmp/cccK3H6m.s:1035 .text.HAL_GPIO_EXTI_IRQHandler:0000000000000018 $d
|
||||||
|
|
||||||
NO UNDEFINED SYMBOLS
|
NO UNDEFINED SYMBOLS
|
||||||
|
|||||||
Binary file not shown.
@ -29,7 +29,9 @@ build/stm32f7xx_hal_i2c.o: \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
||||||
Inc/stm32f7xx_hal_conf.h:
|
Inc/stm32f7xx_hal_conf.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
||||||
@ -62,3 +64,5 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -29,7 +29,9 @@ build/stm32f7xx_hal_i2c_ex.o: \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
||||||
Inc/stm32f7xx_hal_conf.h:
|
Inc/stm32f7xx_hal_conf.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
||||||
@ -62,3 +64,5 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/ccx0Lnwd.s page 1
|
ARM GAS /tmp/ccdozaSJ.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/ccx0Lnwd.s page 1
|
|||||||
28:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** devices contains the following additional features
|
28:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** devices contains the following additional features
|
||||||
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c ****
|
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c ****
|
||||||
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** (+) Possibility to disable or enable Analog Noise Filter
|
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** (+) Possibility to disable or enable Analog Noise Filter
|
||||||
ARM GAS /tmp/ccx0Lnwd.s page 2
|
ARM GAS /tmp/ccdozaSJ.s page 2
|
||||||
|
|
||||||
|
|
||||||
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** (+) Use of a configured Digital Noise Filter
|
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** (+) Use of a configured Digital Noise Filter
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/ccx0Lnwd.s page 1
|
|||||||
85:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** * @brief Configure I2C Analog noise filter.
|
85:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** * @brief Configure I2C Analog noise filter.
|
||||||
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains
|
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains
|
||||||
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** * the configuration information for the specified I2Cx peripheral.
|
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** * the configuration information for the specified I2Cx peripheral.
|
||||||
ARM GAS /tmp/ccx0Lnwd.s page 3
|
ARM GAS /tmp/ccdozaSJ.s page 3
|
||||||
|
|
||||||
|
|
||||||
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** * @param AnalogFilter New state of the Analog filter.
|
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** * @param AnalogFilter New state of the Analog filter.
|
||||||
@ -178,7 +178,7 @@ ARM GAS /tmp/ccx0Lnwd.s page 1
|
|||||||
62 .loc 1 108 9 is_stmt 0 discriminator 2 view .LVU14
|
62 .loc 1 108 9 is_stmt 0 discriminator 2 view .LVU14
|
||||||
63 0028 0268 ldr r2, [r0]
|
63 0028 0268 ldr r2, [r0]
|
||||||
64 .loc 1 108 25 discriminator 2 view .LVU15
|
64 .loc 1 108 25 discriminator 2 view .LVU15
|
||||||
ARM GAS /tmp/ccx0Lnwd.s page 4
|
ARM GAS /tmp/ccdozaSJ.s page 4
|
||||||
|
|
||||||
|
|
||||||
65 002a 1368 ldr r3, [r2]
|
65 002a 1368 ldr r3, [r2]
|
||||||
@ -238,7 +238,7 @@ ARM GAS /tmp/ccx0Lnwd.s page 1
|
|||||||
103 0056 7047 bx lr
|
103 0056 7047 bx lr
|
||||||
104 .LVL5:
|
104 .LVL5:
|
||||||
105 .L4:
|
105 .L4:
|
||||||
ARM GAS /tmp/ccx0Lnwd.s page 5
|
ARM GAS /tmp/ccdozaSJ.s page 5
|
||||||
|
|
||||||
|
|
||||||
100:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c ****
|
100:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c ****
|
||||||
@ -298,7 +298,7 @@ ARM GAS /tmp/ccx0Lnwd.s page 1
|
|||||||
146:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** __HAL_LOCK(hi2c);
|
146:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** __HAL_LOCK(hi2c);
|
||||||
140 .loc 1 146 5 is_stmt 1 view .LVU40
|
140 .loc 1 146 5 is_stmt 1 view .LVU40
|
||||||
141 .loc 1 146 5 view .LVU41
|
141 .loc 1 146 5 view .LVU41
|
||||||
ARM GAS /tmp/ccx0Lnwd.s page 6
|
ARM GAS /tmp/ccdozaSJ.s page 6
|
||||||
|
|
||||||
|
|
||||||
142 000a 90F84030 ldrb r3, [r0, #64] @ zero_extendqisi2
|
142 000a 90F84030 ldrb r3, [r0, #64] @ zero_extendqisi2
|
||||||
@ -358,7 +358,7 @@ ARM GAS /tmp/ccx0Lnwd.s page 1
|
|||||||
177 0038 1368 ldr r3, [r2]
|
177 0038 1368 ldr r3, [r2]
|
||||||
178 003a 43F00103 orr r3, r3, #1
|
178 003a 43F00103 orr r3, r3, #1
|
||||||
179 003e 1360 str r3, [r2]
|
179 003e 1360 str r3, [r2]
|
||||||
ARM GAS /tmp/ccx0Lnwd.s page 7
|
ARM GAS /tmp/ccdozaSJ.s page 7
|
||||||
|
|
||||||
|
|
||||||
166:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c ****
|
166:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c ****
|
||||||
@ -418,7 +418,7 @@ ARM GAS /tmp/ccx0Lnwd.s page 1
|
|||||||
222 .LFB143:
|
222 .LFB143:
|
||||||
179:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** /**
|
179:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** /**
|
||||||
180:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** * @}
|
180:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** * @}
|
||||||
ARM GAS /tmp/ccx0Lnwd.s page 8
|
ARM GAS /tmp/ccdozaSJ.s page 8
|
||||||
|
|
||||||
|
|
||||||
181:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** */
|
181:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** */
|
||||||
@ -478,7 +478,7 @@ ARM GAS /tmp/ccx0Lnwd.s page 1
|
|||||||
236 .loc 1 221 3 view .LVU74
|
236 .loc 1 221 3 view .LVU74
|
||||||
237 0002 084A ldr r2, .L11
|
237 0002 084A ldr r2, .L11
|
||||||
238 0004 516C ldr r1, [r2, #68]
|
238 0004 516C ldr r1, [r2, #68]
|
||||||
ARM GAS /tmp/ccx0Lnwd.s page 9
|
ARM GAS /tmp/ccdozaSJ.s page 9
|
||||||
|
|
||||||
|
|
||||||
239 0006 41F48041 orr r1, r1, #16384
|
239 0006 41F48041 orr r1, r1, #16384
|
||||||
@ -538,7 +538,7 @@ ARM GAS /tmp/ccx0Lnwd.s page 1
|
|||||||
238:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** * @note For all I2C3 pins fast mode plus driving capability can be disabled
|
238:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** * @note For all I2C3 pins fast mode plus driving capability can be disabled
|
||||||
239:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** * only by using I2C_FASTMODEPLUS_I2C3 parameter.
|
239:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** * only by using I2C_FASTMODEPLUS_I2C3 parameter.
|
||||||
240:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** * @note For all I2C4 pins fast mode plus driving capability can be disabled
|
240:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** * @note For all I2C4 pins fast mode plus driving capability can be disabled
|
||||||
ARM GAS /tmp/ccx0Lnwd.s page 10
|
ARM GAS /tmp/ccdozaSJ.s page 10
|
||||||
|
|
||||||
|
|
||||||
241:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** * only by using I2C_FASTMODEPLUS_I2C4 parameter.
|
241:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c **** * only by using I2C_FASTMODEPLUS_I2C4 parameter.
|
||||||
@ -598,7 +598,7 @@ ARM GAS /tmp/ccx0Lnwd.s page 1
|
|||||||
319 0024 00380240 .word 1073887232
|
319 0024 00380240 .word 1073887232
|
||||||
320 0028 00380140 .word 1073821696
|
320 0028 00380140 .word 1073821696
|
||||||
321 .cfi_endproc
|
321 .cfi_endproc
|
||||||
ARM GAS /tmp/ccx0Lnwd.s page 11
|
ARM GAS /tmp/ccdozaSJ.s page 11
|
||||||
|
|
||||||
|
|
||||||
322 .LFE144:
|
322 .LFE144:
|
||||||
@ -609,20 +609,20 @@ ARM GAS /tmp/ccx0Lnwd.s page 1
|
|||||||
328 .file 4 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h"
|
328 .file 4 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h"
|
||||||
329 .file 5 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma.h"
|
329 .file 5 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma.h"
|
||||||
330 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c.h"
|
330 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c.h"
|
||||||
ARM GAS /tmp/ccx0Lnwd.s page 12
|
ARM GAS /tmp/ccdozaSJ.s page 12
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 stm32f7xx_hal_i2c_ex.c
|
*ABS*:0000000000000000 stm32f7xx_hal_i2c_ex.c
|
||||||
/tmp/ccx0Lnwd.s:17 .text.HAL_I2CEx_ConfigAnalogFilter:0000000000000000 $t
|
/tmp/ccdozaSJ.s:17 .text.HAL_I2CEx_ConfigAnalogFilter:0000000000000000 $t
|
||||||
/tmp/ccx0Lnwd.s:25 .text.HAL_I2CEx_ConfigAnalogFilter:0000000000000000 HAL_I2CEx_ConfigAnalogFilter
|
/tmp/ccdozaSJ.s:25 .text.HAL_I2CEx_ConfigAnalogFilter:0000000000000000 HAL_I2CEx_ConfigAnalogFilter
|
||||||
/tmp/ccx0Lnwd.s:115 .text.HAL_I2CEx_ConfigDigitalFilter:0000000000000000 $t
|
/tmp/ccdozaSJ.s:115 .text.HAL_I2CEx_ConfigDigitalFilter:0000000000000000 $t
|
||||||
/tmp/ccx0Lnwd.s:122 .text.HAL_I2CEx_ConfigDigitalFilter:0000000000000000 HAL_I2CEx_ConfigDigitalFilter
|
/tmp/ccdozaSJ.s:122 .text.HAL_I2CEx_ConfigDigitalFilter:0000000000000000 HAL_I2CEx_ConfigDigitalFilter
|
||||||
/tmp/ccx0Lnwd.s:213 .text.HAL_I2CEx_EnableFastModePlus:0000000000000000 $t
|
/tmp/ccdozaSJ.s:213 .text.HAL_I2CEx_EnableFastModePlus:0000000000000000 $t
|
||||||
/tmp/ccx0Lnwd.s:220 .text.HAL_I2CEx_EnableFastModePlus:0000000000000000 HAL_I2CEx_EnableFastModePlus
|
/tmp/ccdozaSJ.s:220 .text.HAL_I2CEx_EnableFastModePlus:0000000000000000 HAL_I2CEx_EnableFastModePlus
|
||||||
/tmp/ccx0Lnwd.s:263 .text.HAL_I2CEx_EnableFastModePlus:0000000000000024 $d
|
/tmp/ccdozaSJ.s:263 .text.HAL_I2CEx_EnableFastModePlus:0000000000000024 $d
|
||||||
/tmp/ccx0Lnwd.s:269 .text.HAL_I2CEx_DisableFastModePlus:0000000000000000 $t
|
/tmp/ccdozaSJ.s:269 .text.HAL_I2CEx_DisableFastModePlus:0000000000000000 $t
|
||||||
/tmp/ccx0Lnwd.s:276 .text.HAL_I2CEx_DisableFastModePlus:0000000000000000 HAL_I2CEx_DisableFastModePlus
|
/tmp/ccdozaSJ.s:276 .text.HAL_I2CEx_DisableFastModePlus:0000000000000000 HAL_I2CEx_DisableFastModePlus
|
||||||
/tmp/ccx0Lnwd.s:319 .text.HAL_I2CEx_DisableFastModePlus:0000000000000024 $d
|
/tmp/ccdozaSJ.s:319 .text.HAL_I2CEx_DisableFastModePlus:0000000000000024 $d
|
||||||
|
|
||||||
NO UNDEFINED SYMBOLS
|
NO UNDEFINED SYMBOLS
|
||||||
|
|||||||
Binary file not shown.
@ -29,6 +29,8 @@ build/stm32f7xx_hal_msp.o: Src/stm32f7xx_hal_msp.c Inc/main.h \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h \
|
||||||
@ -74,6 +76,8 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h:
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -29,7 +29,9 @@ build/stm32f7xx_hal_pwr.o: \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
||||||
Inc/stm32f7xx_hal_conf.h:
|
Inc/stm32f7xx_hal_conf.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
||||||
@ -62,3 +64,5 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/cc78PkiJ.s page 1
|
ARM GAS /tmp/ccjb6E61.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** */
|
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** */
|
||||||
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c ****
|
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c ****
|
||||||
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** /** @defgroup PWR PWR
|
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** /** @defgroup PWR PWR
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 2
|
ARM GAS /tmp/ccjb6E61.s page 2
|
||||||
|
|
||||||
|
|
||||||
32:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** * @brief PWR HAL module driver
|
32:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** * @brief PWR HAL module driver
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** To enable access to the RTC Domain and RTC registers, proceed as follows:
|
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** To enable access to the RTC Domain and RTC registers, proceed as follows:
|
||||||
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** (+) Enable the Power Controller (PWR) APB1 interface clock using the
|
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** (+) Enable the Power Controller (PWR) APB1 interface clock using the
|
||||||
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** __HAL_RCC_PWR_CLK_ENABLE() macro.
|
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** __HAL_RCC_PWR_CLK_ENABLE() macro.
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 3
|
ARM GAS /tmp/ccjb6E61.s page 3
|
||||||
|
|
||||||
|
|
||||||
89:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** (+) Enable access to RTC domain using the HAL_PWR_EnableBkUpAccess() function.
|
89:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** (+) Enable access to RTC domain using the HAL_PWR_EnableBkUpAccess() function.
|
||||||
@ -178,7 +178,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
112:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** void HAL_PWR_EnableBkUpAccess(void)
|
112:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** void HAL_PWR_EnableBkUpAccess(void)
|
||||||
113:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** {
|
113:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** {
|
||||||
61 .loc 1 113 1 is_stmt 1 view -0
|
61 .loc 1 113 1 is_stmt 1 view -0
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 4
|
ARM GAS /tmp/ccjb6E61.s page 4
|
||||||
|
|
||||||
|
|
||||||
62 .cfi_startproc
|
62 .cfi_startproc
|
||||||
@ -238,7 +238,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
102 .L9:
|
102 .L9:
|
||||||
103 .align 2
|
103 .align 2
|
||||||
104 .L8:
|
104 .L8:
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 5
|
ARM GAS /tmp/ccjb6E61.s page 5
|
||||||
|
|
||||||
|
|
||||||
105 000c 00700040 .word 1073770496
|
105 000c 00700040 .word 1073770496
|
||||||
@ -298,7 +298,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
171:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** *** Sleep mode ***
|
171:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** *** Sleep mode ***
|
||||||
172:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** ==================
|
172:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** ==================
|
||||||
173:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** [..]
|
173:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** [..]
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 6
|
ARM GAS /tmp/ccjb6E61.s page 6
|
||||||
|
|
||||||
|
|
||||||
174:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** (+) Entry:
|
174:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** (+) Entry:
|
||||||
@ -358,7 +358,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
228:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** [..]
|
228:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** [..]
|
||||||
229:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c ****
|
229:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c ****
|
||||||
230:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** (+) The MCU can be woken up from low-power mode by an RTC Alarm event, an RTC
|
230:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** (+) The MCU can be woken up from low-power mode by an RTC Alarm event, an RTC
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 7
|
ARM GAS /tmp/ccjb6E61.s page 7
|
||||||
|
|
||||||
|
|
||||||
231:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** Wakeup event, a tamper event or a time-stamp event, without depending on
|
231:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** Wakeup event, a tamper event or a time-stamp event, without depending on
|
||||||
@ -418,7 +418,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
135 000e 1C4B ldr r3, .L15+4
|
135 000e 1C4B ldr r3, .L15+4
|
||||||
136 0010 5A68 ldr r2, [r3, #4]
|
136 0010 5A68 ldr r2, [r3, #4]
|
||||||
137 0012 22F48032 bic r2, r2, #65536
|
137 0012 22F48032 bic r2, r2, #65536
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 8
|
ARM GAS /tmp/ccjb6E61.s page 8
|
||||||
|
|
||||||
|
|
||||||
138 0016 5A60 str r2, [r3, #4]
|
138 0016 5A60 str r2, [r3, #4]
|
||||||
@ -478,7 +478,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
287:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** if((sConfigPVD->Mode & PVD_RISING_EDGE) == PVD_RISING_EDGE)
|
287:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** if((sConfigPVD->Mode & PVD_RISING_EDGE) == PVD_RISING_EDGE)
|
||||||
175 .loc 1 287 3 view .LVU26
|
175 .loc 1 287 3 view .LVU26
|
||||||
176 .loc 1 287 17 is_stmt 0 view .LVU27
|
176 .loc 1 287 17 is_stmt 0 view .LVU27
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 9
|
ARM GAS /tmp/ccjb6E61.s page 9
|
||||||
|
|
||||||
|
|
||||||
177 0054 4368 ldr r3, [r0, #4]
|
177 0054 4368 ldr r3, [r0, #4]
|
||||||
@ -538,7 +538,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
302:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** void HAL_PWR_EnablePVD(void)
|
302:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** void HAL_PWR_EnablePVD(void)
|
||||||
303:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** {
|
303:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** {
|
||||||
219 .loc 1 303 1 is_stmt 1 view -0
|
219 .loc 1 303 1 is_stmt 1 view -0
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 10
|
ARM GAS /tmp/ccjb6E61.s page 10
|
||||||
|
|
||||||
|
|
||||||
220 .cfi_startproc
|
220 .cfi_startproc
|
||||||
@ -598,7 +598,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
263 000c 00700040 .word 1073770496
|
263 000c 00700040 .word 1073770496
|
||||||
264 .cfi_endproc
|
264 .cfi_endproc
|
||||||
265 .LFE146:
|
265 .LFE146:
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 11
|
ARM GAS /tmp/ccjb6E61.s page 11
|
||||||
|
|
||||||
|
|
||||||
267 .section .text.HAL_PWR_EnableWakeUpPin,"ax",%progbits
|
267 .section .text.HAL_PWR_EnableWakeUpPin,"ax",%progbits
|
||||||
@ -658,7 +658,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
294 .LVL2:
|
294 .LVL2:
|
||||||
295 .loc 1 344 3 is_stmt 0 view .LVU45
|
295 .loc 1 344 3 is_stmt 0 view .LVU45
|
||||||
296 0018 9060 str r0, [r2, #8]
|
296 0018 9060 str r0, [r2, #8]
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 12
|
ARM GAS /tmp/ccjb6E61.s page 12
|
||||||
|
|
||||||
|
|
||||||
345:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** }
|
345:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** }
|
||||||
@ -718,7 +718,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
333 000c 00700040 .word 1073770496
|
333 000c 00700040 .word 1073770496
|
||||||
334 .cfi_endproc
|
334 .cfi_endproc
|
||||||
335 .LFE148:
|
335 .LFE148:
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 13
|
ARM GAS /tmp/ccjb6E61.s page 13
|
||||||
|
|
||||||
|
|
||||||
337 .section .text.HAL_PWR_EnterSLEEPMode,"ax",%progbits
|
337 .section .text.HAL_PWR_EnterSLEEPMode,"ax",%progbits
|
||||||
@ -778,7 +778,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
360 0008 1361 str r3, [r2, #16]
|
360 0008 1361 str r3, [r2, #16]
|
||||||
397:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c ****
|
397:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c ****
|
||||||
398:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** /* Ensure that all instructions done before entering SLEEP mode */
|
398:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** /* Ensure that all instructions done before entering SLEEP mode */
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 14
|
ARM GAS /tmp/ccjb6E61.s page 14
|
||||||
|
|
||||||
|
|
||||||
399:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** __DSB();
|
399:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** __DSB();
|
||||||
@ -838,7 +838,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
50:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __STATIC_FORCEINLINE __attribute__((always_inline)) static inline
|
50:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __STATIC_FORCEINLINE __attribute__((always_inline)) static inline
|
||||||
51:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
51:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
||||||
52:Drivers/CMSIS/Include/cmsis_gcc.h **** #ifndef __NO_RETURN
|
52:Drivers/CMSIS/Include/cmsis_gcc.h **** #ifndef __NO_RETURN
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 15
|
ARM GAS /tmp/ccjb6E61.s page 15
|
||||||
|
|
||||||
|
|
||||||
53:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __NO_RETURN __attribute__((__noreturn__))
|
53:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __NO_RETURN __attribute__((__noreturn__))
|
||||||
@ -898,7 +898,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
107:Drivers/CMSIS/Include/cmsis_gcc.h **** #pragma GCC diagnostic pop
|
107:Drivers/CMSIS/Include/cmsis_gcc.h **** #pragma GCC diagnostic pop
|
||||||
108:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __UNALIGNED_UINT32_READ(addr) (((const struct T_UINT32_READ *)(const void *)(add
|
108:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __UNALIGNED_UINT32_READ(addr) (((const struct T_UINT32_READ *)(const void *)(add
|
||||||
109:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
109:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 16
|
ARM GAS /tmp/ccjb6E61.s page 16
|
||||||
|
|
||||||
|
|
||||||
110:Drivers/CMSIS/Include/cmsis_gcc.h **** #ifndef __ALIGNED
|
110:Drivers/CMSIS/Include/cmsis_gcc.h **** #ifndef __ALIGNED
|
||||||
@ -958,7 +958,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
164:Drivers/CMSIS/Include/cmsis_gcc.h **** \return non-secure Control Register value
|
164:Drivers/CMSIS/Include/cmsis_gcc.h **** \return non-secure Control Register value
|
||||||
165:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
165:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
166:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __TZ_get_CONTROL_NS(void)
|
166:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __TZ_get_CONTROL_NS(void)
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 17
|
ARM GAS /tmp/ccjb6E61.s page 17
|
||||||
|
|
||||||
|
|
||||||
167:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
167:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
@ -1018,7 +1018,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
221:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
221:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
||||||
222:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
222:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
223:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, apsr" : "=r" (result) );
|
223:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, apsr" : "=r" (result) );
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 18
|
ARM GAS /tmp/ccjb6E61.s page 18
|
||||||
|
|
||||||
|
|
||||||
224:Drivers/CMSIS/Include/cmsis_gcc.h **** return(result);
|
224:Drivers/CMSIS/Include/cmsis_gcc.h **** return(result);
|
||||||
@ -1078,7 +1078,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
278:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
278:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
279:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MSR psp, %0" : : "r" (topOfProcStack) : );
|
279:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MSR psp, %0" : : "r" (topOfProcStack) : );
|
||||||
280:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
280:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 19
|
ARM GAS /tmp/ccjb6E61.s page 19
|
||||||
|
|
||||||
|
|
||||||
281:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
281:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
@ -1138,7 +1138,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
335:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
335:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
336:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
336:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
337:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (defined (__ARM_FEATURE_CMSE ) && (__ARM_FEATURE_CMSE == 3))
|
337:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (defined (__ARM_FEATURE_CMSE ) && (__ARM_FEATURE_CMSE == 3))
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 20
|
ARM GAS /tmp/ccjb6E61.s page 20
|
||||||
|
|
||||||
|
|
||||||
338:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
338:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
||||||
@ -1198,7 +1198,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
392:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
392:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
||||||
393:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Get Priority Mask (non-secure)
|
393:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Get Priority Mask (non-secure)
|
||||||
394:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the current state of the non-secure priority mask bit from the Priority Mask Reg
|
394:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the current state of the non-secure priority mask bit from the Priority Mask Reg
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 21
|
ARM GAS /tmp/ccjb6E61.s page 21
|
||||||
|
|
||||||
|
|
||||||
395:Drivers/CMSIS/Include/cmsis_gcc.h **** \return Priority Mask value
|
395:Drivers/CMSIS/Include/cmsis_gcc.h **** \return Priority Mask value
|
||||||
@ -1258,7 +1258,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
449:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
449:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
450:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE void __disable_fault_irq(void)
|
450:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE void __disable_fault_irq(void)
|
||||||
451:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
451:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 22
|
ARM GAS /tmp/ccjb6E61.s page 22
|
||||||
|
|
||||||
|
|
||||||
452:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("cpsid f" : : : "memory");
|
452:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("cpsid f" : : : "memory");
|
||||||
@ -1318,7 +1318,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
506:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
506:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
||||||
507:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
507:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
||||||
508:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
508:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 23
|
ARM GAS /tmp/ccjb6E61.s page 23
|
||||||
|
|
||||||
|
|
||||||
509:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
509:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
@ -1378,7 +1378,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
563:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (defined (__ARM_FEATURE_CMSE ) && (__ARM_FEATURE_CMSE == 3))
|
563:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (defined (__ARM_FEATURE_CMSE ) && (__ARM_FEATURE_CMSE == 3))
|
||||||
564:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
564:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
||||||
565:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Set Fault Mask (non-secure)
|
565:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Set Fault Mask (non-secure)
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 24
|
ARM GAS /tmp/ccjb6E61.s page 24
|
||||||
|
|
||||||
|
|
||||||
566:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Assigns the given value to the non-secure Fault Mask register when in secure state.
|
566:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Assigns the given value to the non-secure Fault Mask register when in secure state.
|
||||||
@ -1438,7 +1438,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
620:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
620:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
||||||
621:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, psplim_ns" : "=r" (result) );
|
621:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, psplim_ns" : "=r" (result) );
|
||||||
622:Drivers/CMSIS/Include/cmsis_gcc.h **** return result;
|
622:Drivers/CMSIS/Include/cmsis_gcc.h **** return result;
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 25
|
ARM GAS /tmp/ccjb6E61.s page 25
|
||||||
|
|
||||||
|
|
||||||
623:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
623:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
||||||
@ -1498,7 +1498,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
677:Drivers/CMSIS/Include/cmsis_gcc.h **** \return MSPLIM Register value
|
677:Drivers/CMSIS/Include/cmsis_gcc.h **** \return MSPLIM Register value
|
||||||
678:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
678:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
679:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __get_MSPLIM(void)
|
679:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __get_MSPLIM(void)
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 26
|
ARM GAS /tmp/ccjb6E61.s page 26
|
||||||
|
|
||||||
|
|
||||||
680:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
680:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
@ -1558,7 +1558,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
734:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
734:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
||||||
735:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
735:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
736:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
736:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 27
|
ARM GAS /tmp/ccjb6E61.s page 27
|
||||||
|
|
||||||
|
|
||||||
737:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (defined (__ARM_FEATURE_CMSE ) && (__ARM_FEATURE_CMSE == 3))
|
737:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (defined (__ARM_FEATURE_CMSE ) && (__ARM_FEATURE_CMSE == 3))
|
||||||
@ -1618,7 +1618,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
791:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
791:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
792:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE void __set_FPSCR(uint32_t fpscr)
|
792:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE void __set_FPSCR(uint32_t fpscr)
|
||||||
793:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
793:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 28
|
ARM GAS /tmp/ccjb6E61.s page 28
|
||||||
|
|
||||||
|
|
||||||
794:Drivers/CMSIS/Include/cmsis_gcc.h **** #if ((defined (__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
794:Drivers/CMSIS/Include/cmsis_gcc.h **** #if ((defined (__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
|
||||||
@ -1678,7 +1678,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
848:Drivers/CMSIS/Include/cmsis_gcc.h **** a low-power state until one of a number of events occurs.
|
848:Drivers/CMSIS/Include/cmsis_gcc.h **** a low-power state until one of a number of events occurs.
|
||||||
849:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
849:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
850:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __WFE() __ASM volatile ("wfe")
|
850:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __WFE() __ASM volatile ("wfe")
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 29
|
ARM GAS /tmp/ccjb6E61.s page 29
|
||||||
|
|
||||||
|
|
||||||
851:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
851:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
@ -1738,7 +1738,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
387 .syntax unified
|
387 .syntax unified
|
||||||
388 .LBE13:
|
388 .LBE13:
|
||||||
389 .LBE12:
|
389 .LBE12:
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 30
|
ARM GAS /tmp/ccjb6E61.s page 30
|
||||||
|
|
||||||
|
|
||||||
401:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c ****
|
401:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c ****
|
||||||
@ -1798,7 +1798,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
429 .global HAL_PWR_EnterSTOPMode
|
429 .global HAL_PWR_EnterSTOPMode
|
||||||
430 .syntax unified
|
430 .syntax unified
|
||||||
431 .thumb
|
431 .thumb
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 31
|
ARM GAS /tmp/ccjb6E61.s page 31
|
||||||
|
|
||||||
|
|
||||||
432 .thumb_func
|
432 .thumb_func
|
||||||
@ -1858,7 +1858,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
448:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c ****
|
448:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c ****
|
||||||
449:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** /* Set LPDS, MRLVDS and LPLVDS bits according to Regulator value */
|
449:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** /* Set LPDS, MRLVDS and LPLVDS bits according to Regulator value */
|
||||||
450:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** tmpreg |= Regulator;
|
450:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** tmpreg |= Regulator;
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 32
|
ARM GAS /tmp/ccjb6E61.s page 32
|
||||||
|
|
||||||
|
|
||||||
455 .loc 1 450 3 is_stmt 1 view .LVU77
|
455 .loc 1 450 3 is_stmt 1 view .LVU77
|
||||||
@ -1918,7 +1918,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
496 .syntax unified
|
496 .syntax unified
|
||||||
497 .LBE17:
|
497 .LBE17:
|
||||||
498 .LBE16:
|
498 .LBE16:
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 33
|
ARM GAS /tmp/ccjb6E61.s page 33
|
||||||
|
|
||||||
|
|
||||||
461:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c ****
|
461:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c ****
|
||||||
@ -1978,7 +1978,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
535 0036 F7E7 b .L37
|
535 0036 F7E7 b .L37
|
||||||
536 .L40:
|
536 .L40:
|
||||||
537 .align 2
|
537 .align 2
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 34
|
ARM GAS /tmp/ccjb6E61.s page 34
|
||||||
|
|
||||||
|
|
||||||
538 .L39:
|
538 .L39:
|
||||||
@ -2038,7 +2038,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
501:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** /* Request Wait For Interrupt */
|
501:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** /* Request Wait For Interrupt */
|
||||||
502:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** __WFI();
|
502:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** __WFI();
|
||||||
571 .loc 1 502 3 is_stmt 1 view .LVU104
|
571 .loc 1 502 3 is_stmt 1 view .LVU104
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 35
|
ARM GAS /tmp/ccjb6E61.s page 35
|
||||||
|
|
||||||
|
|
||||||
572 .syntax unified
|
572 .syntax unified
|
||||||
@ -2098,7 +2098,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
602 @ link register save eliminated.
|
602 @ link register save eliminated.
|
||||||
529:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** /* NOTE : This function Should not be modified, when the callback is needed,
|
529:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** /* NOTE : This function Should not be modified, when the callback is needed,
|
||||||
530:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** the HAL_PWR_PVDCallback could be implemented in the user file
|
530:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** the HAL_PWR_PVDCallback could be implemented in the user file
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 36
|
ARM GAS /tmp/ccjb6E61.s page 36
|
||||||
|
|
||||||
|
|
||||||
531:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** */
|
531:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** */
|
||||||
@ -2158,7 +2158,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
649 .L49:
|
649 .L49:
|
||||||
650 001c 003C0140 .word 1073822720
|
650 001c 003C0140 .word 1073822720
|
||||||
651 .cfi_endproc
|
651 .cfi_endproc
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 37
|
ARM GAS /tmp/ccjb6E61.s page 37
|
||||||
|
|
||||||
|
|
||||||
652 .LFE152:
|
652 .LFE152:
|
||||||
@ -2218,7 +2218,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
550:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** * @note Clears SLEEPONEXIT bit of SCR register. When this bit is set, the processor
|
550:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** * @note Clears SLEEPONEXIT bit of SCR register. When this bit is set, the processor
|
||||||
551:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** * re-enters SLEEP mode when an interruption handling is over.
|
551:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** * re-enters SLEEP mode when an interruption handling is over.
|
||||||
552:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** * @retval None
|
552:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** * @retval None
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 38
|
ARM GAS /tmp/ccjb6E61.s page 38
|
||||||
|
|
||||||
|
|
||||||
553:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** */
|
553:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** */
|
||||||
@ -2278,7 +2278,7 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
570:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** }
|
570:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c **** }
|
||||||
732 .loc 1 570 1 is_stmt 0 view .LVU124
|
732 .loc 1 570 1 is_stmt 0 view .LVU124
|
||||||
733 000a 7047 bx lr
|
733 000a 7047 bx lr
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 39
|
ARM GAS /tmp/ccjb6E61.s page 39
|
||||||
|
|
||||||
|
|
||||||
734 .L59:
|
734 .L59:
|
||||||
@ -2333,60 +2333,60 @@ ARM GAS /tmp/cc78PkiJ.s page 1
|
|||||||
774 .file 5 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f767xx.h"
|
774 .file 5 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f767xx.h"
|
||||||
775 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h"
|
775 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h"
|
||||||
776 .file 7 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h"
|
776 .file 7 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h"
|
||||||
ARM GAS /tmp/cc78PkiJ.s page 40
|
ARM GAS /tmp/ccjb6E61.s page 40
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 stm32f7xx_hal_pwr.c
|
*ABS*:0000000000000000 stm32f7xx_hal_pwr.c
|
||||||
/tmp/cc78PkiJ.s:17 .text.HAL_PWR_DeInit:0000000000000000 $t
|
/tmp/ccjb6E61.s:17 .text.HAL_PWR_DeInit:0000000000000000 $t
|
||||||
/tmp/cc78PkiJ.s:25 .text.HAL_PWR_DeInit:0000000000000000 HAL_PWR_DeInit
|
/tmp/ccjb6E61.s:25 .text.HAL_PWR_DeInit:0000000000000000 HAL_PWR_DeInit
|
||||||
/tmp/cc78PkiJ.s:47 .text.HAL_PWR_DeInit:0000000000000014 $d
|
/tmp/ccjb6E61.s:47 .text.HAL_PWR_DeInit:0000000000000014 $d
|
||||||
/tmp/cc78PkiJ.s:52 .text.HAL_PWR_EnableBkUpAccess:0000000000000000 $t
|
/tmp/ccjb6E61.s:52 .text.HAL_PWR_EnableBkUpAccess:0000000000000000 $t
|
||||||
/tmp/cc78PkiJ.s:59 .text.HAL_PWR_EnableBkUpAccess:0000000000000000 HAL_PWR_EnableBkUpAccess
|
/tmp/ccjb6E61.s:59 .text.HAL_PWR_EnableBkUpAccess:0000000000000000 HAL_PWR_EnableBkUpAccess
|
||||||
/tmp/cc78PkiJ.s:76 .text.HAL_PWR_EnableBkUpAccess:000000000000000c $d
|
/tmp/ccjb6E61.s:76 .text.HAL_PWR_EnableBkUpAccess:000000000000000c $d
|
||||||
/tmp/cc78PkiJ.s:81 .text.HAL_PWR_DisableBkUpAccess:0000000000000000 $t
|
/tmp/ccjb6E61.s:81 .text.HAL_PWR_DisableBkUpAccess:0000000000000000 $t
|
||||||
/tmp/cc78PkiJ.s:88 .text.HAL_PWR_DisableBkUpAccess:0000000000000000 HAL_PWR_DisableBkUpAccess
|
/tmp/ccjb6E61.s:88 .text.HAL_PWR_DisableBkUpAccess:0000000000000000 HAL_PWR_DisableBkUpAccess
|
||||||
/tmp/cc78PkiJ.s:105 .text.HAL_PWR_DisableBkUpAccess:000000000000000c $d
|
/tmp/ccjb6E61.s:105 .text.HAL_PWR_DisableBkUpAccess:000000000000000c $d
|
||||||
/tmp/cc78PkiJ.s:110 .text.HAL_PWR_ConfigPVD:0000000000000000 $t
|
/tmp/ccjb6E61.s:110 .text.HAL_PWR_ConfigPVD:0000000000000000 $t
|
||||||
/tmp/cc78PkiJ.s:117 .text.HAL_PWR_ConfigPVD:0000000000000000 HAL_PWR_ConfigPVD
|
/tmp/ccjb6E61.s:117 .text.HAL_PWR_ConfigPVD:0000000000000000 HAL_PWR_ConfigPVD
|
||||||
/tmp/cc78PkiJ.s:204 .text.HAL_PWR_ConfigPVD:000000000000007c $d
|
/tmp/ccjb6E61.s:204 .text.HAL_PWR_ConfigPVD:000000000000007c $d
|
||||||
/tmp/cc78PkiJ.s:210 .text.HAL_PWR_EnablePVD:0000000000000000 $t
|
/tmp/ccjb6E61.s:210 .text.HAL_PWR_EnablePVD:0000000000000000 $t
|
||||||
/tmp/cc78PkiJ.s:217 .text.HAL_PWR_EnablePVD:0000000000000000 HAL_PWR_EnablePVD
|
/tmp/ccjb6E61.s:217 .text.HAL_PWR_EnablePVD:0000000000000000 HAL_PWR_EnablePVD
|
||||||
/tmp/cc78PkiJ.s:234 .text.HAL_PWR_EnablePVD:000000000000000c $d
|
/tmp/ccjb6E61.s:234 .text.HAL_PWR_EnablePVD:000000000000000c $d
|
||||||
/tmp/cc78PkiJ.s:239 .text.HAL_PWR_DisablePVD:0000000000000000 $t
|
/tmp/ccjb6E61.s:239 .text.HAL_PWR_DisablePVD:0000000000000000 $t
|
||||||
/tmp/cc78PkiJ.s:246 .text.HAL_PWR_DisablePVD:0000000000000000 HAL_PWR_DisablePVD
|
/tmp/ccjb6E61.s:246 .text.HAL_PWR_DisablePVD:0000000000000000 HAL_PWR_DisablePVD
|
||||||
/tmp/cc78PkiJ.s:263 .text.HAL_PWR_DisablePVD:000000000000000c $d
|
/tmp/ccjb6E61.s:263 .text.HAL_PWR_DisablePVD:000000000000000c $d
|
||||||
/tmp/cc78PkiJ.s:268 .text.HAL_PWR_EnableWakeUpPin:0000000000000000 $t
|
/tmp/ccjb6E61.s:268 .text.HAL_PWR_EnableWakeUpPin:0000000000000000 $t
|
||||||
/tmp/cc78PkiJ.s:275 .text.HAL_PWR_EnableWakeUpPin:0000000000000000 HAL_PWR_EnableWakeUpPin
|
/tmp/ccjb6E61.s:275 .text.HAL_PWR_EnableWakeUpPin:0000000000000000 HAL_PWR_EnableWakeUpPin
|
||||||
/tmp/cc78PkiJ.s:302 .text.HAL_PWR_EnableWakeUpPin:000000000000001c $d
|
/tmp/ccjb6E61.s:302 .text.HAL_PWR_EnableWakeUpPin:000000000000001c $d
|
||||||
/tmp/cc78PkiJ.s:307 .text.HAL_PWR_DisableWakeUpPin:0000000000000000 $t
|
/tmp/ccjb6E61.s:307 .text.HAL_PWR_DisableWakeUpPin:0000000000000000 $t
|
||||||
/tmp/cc78PkiJ.s:314 .text.HAL_PWR_DisableWakeUpPin:0000000000000000 HAL_PWR_DisableWakeUpPin
|
/tmp/ccjb6E61.s:314 .text.HAL_PWR_DisableWakeUpPin:0000000000000000 HAL_PWR_DisableWakeUpPin
|
||||||
/tmp/cc78PkiJ.s:333 .text.HAL_PWR_DisableWakeUpPin:000000000000000c $d
|
/tmp/ccjb6E61.s:333 .text.HAL_PWR_DisableWakeUpPin:000000000000000c $d
|
||||||
/tmp/cc78PkiJ.s:338 .text.HAL_PWR_EnterSLEEPMode:0000000000000000 $t
|
/tmp/ccjb6E61.s:338 .text.HAL_PWR_EnterSLEEPMode:0000000000000000 $t
|
||||||
/tmp/cc78PkiJ.s:345 .text.HAL_PWR_EnterSLEEPMode:0000000000000000 HAL_PWR_EnterSLEEPMode
|
/tmp/ccjb6E61.s:345 .text.HAL_PWR_EnterSLEEPMode:0000000000000000 HAL_PWR_EnterSLEEPMode
|
||||||
/tmp/cc78PkiJ.s:423 .text.HAL_PWR_EnterSLEEPMode:0000000000000024 $d
|
/tmp/ccjb6E61.s:423 .text.HAL_PWR_EnterSLEEPMode:0000000000000024 $d
|
||||||
/tmp/cc78PkiJ.s:428 .text.HAL_PWR_EnterSTOPMode:0000000000000000 $t
|
/tmp/ccjb6E61.s:428 .text.HAL_PWR_EnterSTOPMode:0000000000000000 $t
|
||||||
/tmp/cc78PkiJ.s:435 .text.HAL_PWR_EnterSTOPMode:0000000000000000 HAL_PWR_EnterSTOPMode
|
/tmp/ccjb6E61.s:435 .text.HAL_PWR_EnterSTOPMode:0000000000000000 HAL_PWR_EnterSTOPMode
|
||||||
/tmp/cc78PkiJ.s:539 .text.HAL_PWR_EnterSTOPMode:0000000000000038 $d
|
/tmp/ccjb6E61.s:539 .text.HAL_PWR_EnterSTOPMode:0000000000000038 $d
|
||||||
/tmp/cc78PkiJ.s:545 .text.HAL_PWR_EnterSTANDBYMode:0000000000000000 $t
|
/tmp/ccjb6E61.s:545 .text.HAL_PWR_EnterSTANDBYMode:0000000000000000 $t
|
||||||
/tmp/cc78PkiJ.s:552 .text.HAL_PWR_EnterSTANDBYMode:0000000000000000 HAL_PWR_EnterSTANDBYMode
|
/tmp/ccjb6E61.s:552 .text.HAL_PWR_EnterSTANDBYMode:0000000000000000 HAL_PWR_EnterSTANDBYMode
|
||||||
/tmp/cc78PkiJ.s:583 .text.HAL_PWR_EnterSTANDBYMode:0000000000000018 $d
|
/tmp/ccjb6E61.s:583 .text.HAL_PWR_EnterSTANDBYMode:0000000000000018 $d
|
||||||
/tmp/cc78PkiJ.s:589 .text.HAL_PWR_PVDCallback:0000000000000000 $t
|
/tmp/ccjb6E61.s:589 .text.HAL_PWR_PVDCallback:0000000000000000 $t
|
||||||
/tmp/cc78PkiJ.s:596 .text.HAL_PWR_PVDCallback:0000000000000000 HAL_PWR_PVDCallback
|
/tmp/ccjb6E61.s:596 .text.HAL_PWR_PVDCallback:0000000000000000 HAL_PWR_PVDCallback
|
||||||
/tmp/cc78PkiJ.s:609 .text.HAL_PWR_PVD_IRQHandler:0000000000000000 $t
|
/tmp/ccjb6E61.s:609 .text.HAL_PWR_PVD_IRQHandler:0000000000000000 $t
|
||||||
/tmp/cc78PkiJ.s:616 .text.HAL_PWR_PVD_IRQHandler:0000000000000000 HAL_PWR_PVD_IRQHandler
|
/tmp/ccjb6E61.s:616 .text.HAL_PWR_PVD_IRQHandler:0000000000000000 HAL_PWR_PVD_IRQHandler
|
||||||
/tmp/cc78PkiJ.s:650 .text.HAL_PWR_PVD_IRQHandler:000000000000001c $d
|
/tmp/ccjb6E61.s:650 .text.HAL_PWR_PVD_IRQHandler:000000000000001c $d
|
||||||
/tmp/cc78PkiJ.s:655 .text.HAL_PWR_EnableSleepOnExit:0000000000000000 $t
|
/tmp/ccjb6E61.s:655 .text.HAL_PWR_EnableSleepOnExit:0000000000000000 $t
|
||||||
/tmp/cc78PkiJ.s:662 .text.HAL_PWR_EnableSleepOnExit:0000000000000000 HAL_PWR_EnableSleepOnExit
|
/tmp/ccjb6E61.s:662 .text.HAL_PWR_EnableSleepOnExit:0000000000000000 HAL_PWR_EnableSleepOnExit
|
||||||
/tmp/cc78PkiJ.s:679 .text.HAL_PWR_EnableSleepOnExit:000000000000000c $d
|
/tmp/ccjb6E61.s:679 .text.HAL_PWR_EnableSleepOnExit:000000000000000c $d
|
||||||
/tmp/cc78PkiJ.s:684 .text.HAL_PWR_DisableSleepOnExit:0000000000000000 $t
|
/tmp/ccjb6E61.s:684 .text.HAL_PWR_DisableSleepOnExit:0000000000000000 $t
|
||||||
/tmp/cc78PkiJ.s:691 .text.HAL_PWR_DisableSleepOnExit:0000000000000000 HAL_PWR_DisableSleepOnExit
|
/tmp/ccjb6E61.s:691 .text.HAL_PWR_DisableSleepOnExit:0000000000000000 HAL_PWR_DisableSleepOnExit
|
||||||
/tmp/cc78PkiJ.s:708 .text.HAL_PWR_DisableSleepOnExit:000000000000000c $d
|
/tmp/ccjb6E61.s:708 .text.HAL_PWR_DisableSleepOnExit:000000000000000c $d
|
||||||
/tmp/cc78PkiJ.s:713 .text.HAL_PWR_EnableSEVOnPend:0000000000000000 $t
|
/tmp/ccjb6E61.s:713 .text.HAL_PWR_EnableSEVOnPend:0000000000000000 $t
|
||||||
/tmp/cc78PkiJ.s:720 .text.HAL_PWR_EnableSEVOnPend:0000000000000000 HAL_PWR_EnableSEVOnPend
|
/tmp/ccjb6E61.s:720 .text.HAL_PWR_EnableSEVOnPend:0000000000000000 HAL_PWR_EnableSEVOnPend
|
||||||
/tmp/cc78PkiJ.s:737 .text.HAL_PWR_EnableSEVOnPend:000000000000000c $d
|
/tmp/ccjb6E61.s:737 .text.HAL_PWR_EnableSEVOnPend:000000000000000c $d
|
||||||
/tmp/cc78PkiJ.s:742 .text.HAL_PWR_DisableSEVOnPend:0000000000000000 $t
|
/tmp/ccjb6E61.s:742 .text.HAL_PWR_DisableSEVOnPend:0000000000000000 $t
|
||||||
/tmp/cc78PkiJ.s:749 .text.HAL_PWR_DisableSEVOnPend:0000000000000000 HAL_PWR_DisableSEVOnPend
|
/tmp/ccjb6E61.s:749 .text.HAL_PWR_DisableSEVOnPend:0000000000000000 HAL_PWR_DisableSEVOnPend
|
||||||
/tmp/cc78PkiJ.s:766 .text.HAL_PWR_DisableSEVOnPend:000000000000000c $d
|
/tmp/ccjb6E61.s:766 .text.HAL_PWR_DisableSEVOnPend:000000000000000c $d
|
||||||
|
|
||||||
NO UNDEFINED SYMBOLS
|
NO UNDEFINED SYMBOLS
|
||||||
|
|||||||
Binary file not shown.
@ -29,7 +29,9 @@ build/stm32f7xx_hal_pwr_ex.o: \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
||||||
Inc/stm32f7xx_hal_conf.h:
|
Inc/stm32f7xx_hal_conf.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
||||||
@ -62,3 +64,5 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/ccu2BQuY.s page 1
|
ARM GAS /tmp/cc91meYU.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c ****
|
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c ****
|
||||||
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** /** @defgroup PWREx PWREx
|
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** /** @defgroup PWREx PWREx
|
||||||
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** * @brief PWR HAL module driver
|
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** * @brief PWR HAL module driver
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 2
|
ARM GAS /tmp/cc91meYU.s page 2
|
||||||
|
|
||||||
|
|
||||||
32:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** * @{
|
32:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** * @{
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** -@- Refer to the description of Read protection (RDP) in the Flash
|
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** -@- Refer to the description of Read protection (RDP) in the Flash
|
||||||
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** programming manual.
|
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** programming manual.
|
||||||
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c ****
|
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c ****
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 3
|
ARM GAS /tmp/cc91meYU.s page 3
|
||||||
|
|
||||||
|
|
||||||
89:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** (+) The main internal regulator can be configured to have a tradeoff between
|
89:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** (+) The main internal regulator can be configured to have a tradeoff between
|
||||||
@ -178,7 +178,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
35 .cfi_offset 4, -8
|
35 .cfi_offset 4, -8
|
||||||
36 .cfi_offset 14, -4
|
36 .cfi_offset 14, -4
|
||||||
136:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** uint32_t tickstart = 0;
|
136:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** uint32_t tickstart = 0;
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 4
|
ARM GAS /tmp/cc91meYU.s page 4
|
||||||
|
|
||||||
|
|
||||||
37 .loc 1 136 3 view .LVU1
|
37 .loc 1 136 3 view .LVU1
|
||||||
@ -238,7 +238,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
74 .loc 1 153 14 view .LVU16
|
74 .loc 1 153 14 view .LVU16
|
||||||
75 0030 0320 movs r0, #3
|
75 0030 0320 movs r0, #3
|
||||||
76 0032 00E0 b .L3
|
76 0032 00E0 b .L3
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 5
|
ARM GAS /tmp/cc91meYU.s page 5
|
||||||
|
|
||||||
|
|
||||||
77 .L7:
|
77 .L7:
|
||||||
@ -298,7 +298,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
118 000a 5A60 str r2, [r3, #4]
|
118 000a 5A60 str r2, [r3, #4]
|
||||||
169:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c ****
|
169:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c ****
|
||||||
170:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** /* Workaround for the following hardware bug: */
|
170:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** /* Workaround for the following hardware bug: */
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 6
|
ARM GAS /tmp/cc91meYU.s page 6
|
||||||
|
|
||||||
|
|
||||||
171:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** /* Id 19: PWR : No STANDBY wake-up when Back-up RAM enabled (ref. Errata Sheet p23) */
|
171:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** /* Id 19: PWR : No STANDBY wake-up when Back-up RAM enabled (ref. Errata Sheet p23) */
|
||||||
@ -358,7 +358,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
157 .LVL9:
|
157 .LVL9:
|
||||||
158 .L18:
|
158 .L18:
|
||||||
159 .loc 1 186 1 view .LVU39
|
159 .loc 1 186 1 view .LVU39
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 7
|
ARM GAS /tmp/cc91meYU.s page 7
|
||||||
|
|
||||||
|
|
||||||
160 .align 2
|
160 .align 2
|
||||||
@ -418,7 +418,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
199:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** * @brief Disables the Flash Power Down in Stop mode.
|
199:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** * @brief Disables the Flash Power Down in Stop mode.
|
||||||
200:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** * @retval None
|
200:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** * @retval None
|
||||||
201:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** */
|
201:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** */
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 8
|
ARM GAS /tmp/cc91meYU.s page 8
|
||||||
|
|
||||||
|
|
||||||
202:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** void HAL_PWREx_DisableFlashPowerDown(void)
|
202:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** void HAL_PWREx_DisableFlashPowerDown(void)
|
||||||
@ -478,7 +478,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
247 .loc 1 216 1 view .LVU51
|
247 .loc 1 216 1 view .LVU51
|
||||||
248 000a 7047 bx lr
|
248 000a 7047 bx lr
|
||||||
249 .L27:
|
249 .L27:
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 9
|
ARM GAS /tmp/cc91meYU.s page 9
|
||||||
|
|
||||||
|
|
||||||
250 .align 2
|
250 .align 2
|
||||||
@ -538,7 +538,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
229:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** * @brief Enables Low Power Regulator low voltage mode.
|
229:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** * @brief Enables Low Power Regulator low voltage mode.
|
||||||
230:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** * @retval None
|
230:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** * @retval None
|
||||||
231:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** */
|
231:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** */
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 10
|
ARM GAS /tmp/cc91meYU.s page 10
|
||||||
|
|
||||||
|
|
||||||
232:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** void HAL_PWREx_EnableLowRegulatorLowVoltage(void)
|
232:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** void HAL_PWREx_EnableLowRegulatorLowVoltage(void)
|
||||||
@ -598,7 +598,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
337 .loc 1 246 1 view .LVU63
|
337 .loc 1 246 1 view .LVU63
|
||||||
338 000a 7047 bx lr
|
338 000a 7047 bx lr
|
||||||
339 .L36:
|
339 .L36:
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 11
|
ARM GAS /tmp/cc91meYU.s page 11
|
||||||
|
|
||||||
|
|
||||||
340 .align 2
|
340 .align 2
|
||||||
@ -658,7 +658,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
380 0010 03F08053 and r3, r3, #268435456
|
380 0010 03F08053 and r3, r3, #268435456
|
||||||
381 0014 0193 str r3, [sp, #4]
|
381 0014 0193 str r3, [sp, #4]
|
||||||
382 .loc 1 262 3 view .LVU70
|
382 .loc 1 262 3 view .LVU70
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 12
|
ARM GAS /tmp/cc91meYU.s page 12
|
||||||
|
|
||||||
|
|
||||||
383 0016 019B ldr r3, [sp, #4]
|
383 0016 019B ldr r3, [sp, #4]
|
||||||
@ -718,7 +718,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
282:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** tickstart = HAL_GetTick();
|
282:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** tickstart = HAL_GetTick();
|
||||||
283:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c ****
|
283:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c ****
|
||||||
284:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** while(!__HAL_PWR_GET_FLAG(PWR_FLAG_ODSWRDY))
|
284:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** while(!__HAL_PWR_GET_FLAG(PWR_FLAG_ODSWRDY))
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 13
|
ARM GAS /tmp/cc91meYU.s page 13
|
||||||
|
|
||||||
|
|
||||||
285:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** {
|
285:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** {
|
||||||
@ -778,7 +778,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
454 0062 001B subs r0, r0, r4
|
454 0062 001B subs r0, r0, r4
|
||||||
286:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** {
|
286:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** {
|
||||||
455 .loc 1 286 7 view .LVU95
|
455 .loc 1 286 7 view .LVU95
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 14
|
ARM GAS /tmp/cc91meYU.s page 14
|
||||||
|
|
||||||
|
|
||||||
456 0064 B0F57A7F cmp r0, #1000
|
456 0064 B0F57A7F cmp r0, #1000
|
||||||
@ -838,7 +838,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
496 .LVL18:
|
496 .LVL18:
|
||||||
307:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c ****
|
307:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c ****
|
||||||
308:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** __HAL_RCC_PWR_CLK_ENABLE();
|
308:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** __HAL_RCC_PWR_CLK_ENABLE();
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 15
|
ARM GAS /tmp/cc91meYU.s page 15
|
||||||
|
|
||||||
|
|
||||||
497 .loc 1 308 3 view .LVU100
|
497 .loc 1 308 3 view .LVU100
|
||||||
@ -898,7 +898,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
541 003c F4D9 bls .L51
|
541 003c F4D9 bls .L51
|
||||||
319:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** {
|
319:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** {
|
||||||
320:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** return HAL_TIMEOUT;
|
320:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** return HAL_TIMEOUT;
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 16
|
ARM GAS /tmp/cc91meYU.s page 16
|
||||||
|
|
||||||
|
|
||||||
542 .loc 1 320 14 view .LVU117
|
542 .loc 1 320 14 view .LVU117
|
||||||
@ -958,7 +958,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
571 0054 084B ldr r3, .L61+4
|
571 0054 084B ldr r3, .L61+4
|
||||||
572 0056 5B68 ldr r3, [r3, #4]
|
572 0056 5B68 ldr r3, [r3, #4]
|
||||||
330:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** {
|
330:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** {
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 17
|
ARM GAS /tmp/cc91meYU.s page 17
|
||||||
|
|
||||||
|
|
||||||
573 .loc 1 330 8 view .LVU125
|
573 .loc 1 330 8 view .LVU125
|
||||||
@ -1018,7 +1018,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
352:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** * exiting Stop mode.
|
352:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** * exiting Stop mode.
|
||||||
353:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** * When the voltage regulator operates in Under-drive mode, an additional
|
353:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** * When the voltage regulator operates in Under-drive mode, an additional
|
||||||
354:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** * startup delay is induced when waking up from Stop mode.
|
354:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** * startup delay is induced when waking up from Stop mode.
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 18
|
ARM GAS /tmp/cc91meYU.s page 18
|
||||||
|
|
||||||
|
|
||||||
355:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** *
|
355:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** *
|
||||||
@ -1078,7 +1078,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
387:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** /* Enable Power ctrl clock */
|
387:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** /* Enable Power ctrl clock */
|
||||||
388:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** __HAL_RCC_PWR_CLK_ENABLE();
|
388:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** __HAL_RCC_PWR_CLK_ENABLE();
|
||||||
633 .loc 1 388 3 view .LVU138
|
633 .loc 1 388 3 view .LVU138
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 19
|
ARM GAS /tmp/cc91meYU.s page 19
|
||||||
|
|
||||||
|
|
||||||
634 .LBB4:
|
634 .LBB4:
|
||||||
@ -1138,7 +1138,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
676 003c B3F5402F cmp r3, #786432
|
676 003c B3F5402F cmp r3, #786432
|
||||||
677 0040 07D1 bne .L71
|
677 0040 07D1 bne .L71
|
||||||
401:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** {
|
401:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** {
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 20
|
ARM GAS /tmp/cc91meYU.s page 20
|
||||||
|
|
||||||
|
|
||||||
402:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** if((HAL_GetTick() - tickstart ) > PWR_UDERDRIVE_TIMEOUT_VALUE)
|
402:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** if((HAL_GetTick() - tickstart ) > PWR_UDERDRIVE_TIMEOUT_VALUE)
|
||||||
@ -1198,7 +1198,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
713 .loc 1 420 12 view .LVU169
|
713 .loc 1 420 12 view .LVU169
|
||||||
714 0062 43F00403 orr r3, r3, #4
|
714 0062 43F00403 orr r3, r3, #4
|
||||||
715 0066 1361 str r3, [r2, #16]
|
715 0066 1361 str r3, [r2, #16]
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 21
|
ARM GAS /tmp/cc91meYU.s page 21
|
||||||
|
|
||||||
|
|
||||||
716 .LVL36:
|
716 .LVL36:
|
||||||
@ -1258,7 +1258,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
752 .syntax unified
|
752 .syntax unified
|
||||||
753 @ 426 "Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c" 1
|
753 @ 426 "Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c" 1
|
||||||
754 007e 30BF wfi
|
754 007e 30BF wfi
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 22
|
ARM GAS /tmp/cc91meYU.s page 22
|
||||||
|
|
||||||
|
|
||||||
755 @ 0 "" 2
|
755 @ 0 "" 2
|
||||||
@ -1318,7 +1318,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
802 .syntax unified
|
802 .syntax unified
|
||||||
803 .thumb
|
803 .thumb
|
||||||
804 .thumb_func
|
804 .thumb_func
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 23
|
ARM GAS /tmp/cc91meYU.s page 23
|
||||||
|
|
||||||
|
|
||||||
805 .fpu fpv5-d16
|
805 .fpu fpv5-d16
|
||||||
@ -1378,7 +1378,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
481:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c ****
|
481:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c ****
|
||||||
482:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** /* Enable Power ctrl clock */
|
482:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** /* Enable Power ctrl clock */
|
||||||
483:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** __HAL_RCC_PWR_CLK_ENABLE();
|
483:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** __HAL_RCC_PWR_CLK_ENABLE();
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 24
|
ARM GAS /tmp/cc91meYU.s page 24
|
||||||
|
|
||||||
|
|
||||||
827 .loc 1 483 3 view .LVU187
|
827 .loc 1 483 3 view .LVU187
|
||||||
@ -1438,7 +1438,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
870 0038 13F0007F tst r3, #33554432
|
870 0038 13F0007F tst r3, #33554432
|
||||||
871 003c 06D0 beq .L91
|
871 003c 06D0 beq .L91
|
||||||
495:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** {
|
495:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** {
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 25
|
ARM GAS /tmp/cc91meYU.s page 25
|
||||||
|
|
||||||
|
|
||||||
496:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** if((HAL_GetTick() - tickstart ) > PLL_TIMEOUT_VALUE)
|
496:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** if((HAL_GetTick() - tickstart ) > PLL_TIMEOUT_VALUE)
|
||||||
@ -1498,7 +1498,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
912 .LVL45:
|
912 .LVL45:
|
||||||
913 0072 0446 mov r4, r0
|
913 0072 0446 mov r4, r0
|
||||||
914 .LVL46:
|
914 .LVL46:
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 26
|
ARM GAS /tmp/cc91meYU.s page 26
|
||||||
|
|
||||||
|
|
||||||
510:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** /* Wait till PLL is ready */
|
510:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c **** /* Wait till PLL is ready */
|
||||||
@ -1558,7 +1558,7 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
955 .LVL50:
|
955 .LVL50:
|
||||||
956 .loc 1 523 25 view .LVU236
|
956 .loc 1 523 25 view .LVU236
|
||||||
957 00a0 001B subs r0, r0, r4
|
957 00a0 001B subs r0, r0, r4
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 27
|
ARM GAS /tmp/cc91meYU.s page 27
|
||||||
|
|
||||||
|
|
||||||
958 .loc 1 523 9 view .LVU237
|
958 .loc 1 523 9 view .LVU237
|
||||||
@ -1610,50 +1610,50 @@ ARM GAS /tmp/ccu2BQuY.s page 1
|
|||||||
993 .file 5 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h"
|
993 .file 5 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h"
|
||||||
994 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h"
|
994 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h"
|
||||||
995 .file 7 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h"
|
995 .file 7 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h"
|
||||||
ARM GAS /tmp/ccu2BQuY.s page 28
|
ARM GAS /tmp/cc91meYU.s page 28
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 stm32f7xx_hal_pwr_ex.c
|
*ABS*:0000000000000000 stm32f7xx_hal_pwr_ex.c
|
||||||
/tmp/ccu2BQuY.s:17 .text.HAL_PWREx_EnableBkUpReg:0000000000000000 $t
|
/tmp/cc91meYU.s:17 .text.HAL_PWREx_EnableBkUpReg:0000000000000000 $t
|
||||||
/tmp/ccu2BQuY.s:25 .text.HAL_PWREx_EnableBkUpReg:0000000000000000 HAL_PWREx_EnableBkUpReg
|
/tmp/cc91meYU.s:25 .text.HAL_PWREx_EnableBkUpReg:0000000000000000 HAL_PWREx_EnableBkUpReg
|
||||||
/tmp/ccu2BQuY.s:88 .text.HAL_PWREx_EnableBkUpReg:0000000000000038 $d
|
/tmp/cc91meYU.s:88 .text.HAL_PWREx_EnableBkUpReg:0000000000000038 $d
|
||||||
/tmp/ccu2BQuY.s:93 .text.HAL_PWREx_DisableBkUpReg:0000000000000000 $t
|
/tmp/cc91meYU.s:93 .text.HAL_PWREx_DisableBkUpReg:0000000000000000 $t
|
||||||
/tmp/ccu2BQuY.s:100 .text.HAL_PWREx_DisableBkUpReg:0000000000000000 HAL_PWREx_DisableBkUpReg
|
/tmp/cc91meYU.s:100 .text.HAL_PWREx_DisableBkUpReg:0000000000000000 HAL_PWREx_DisableBkUpReg
|
||||||
/tmp/ccu2BQuY.s:162 .text.HAL_PWREx_DisableBkUpReg:0000000000000038 $d
|
/tmp/cc91meYU.s:162 .text.HAL_PWREx_DisableBkUpReg:0000000000000038 $d
|
||||||
/tmp/ccu2BQuY.s:167 .text.HAL_PWREx_EnableFlashPowerDown:0000000000000000 $t
|
/tmp/cc91meYU.s:167 .text.HAL_PWREx_EnableFlashPowerDown:0000000000000000 $t
|
||||||
/tmp/ccu2BQuY.s:174 .text.HAL_PWREx_EnableFlashPowerDown:0000000000000000 HAL_PWREx_EnableFlashPowerDown
|
/tmp/cc91meYU.s:174 .text.HAL_PWREx_EnableFlashPowerDown:0000000000000000 HAL_PWREx_EnableFlashPowerDown
|
||||||
/tmp/ccu2BQuY.s:192 .text.HAL_PWREx_EnableFlashPowerDown:000000000000000c $d
|
/tmp/cc91meYU.s:192 .text.HAL_PWREx_EnableFlashPowerDown:000000000000000c $d
|
||||||
/tmp/ccu2BQuY.s:197 .text.HAL_PWREx_DisableFlashPowerDown:0000000000000000 $t
|
/tmp/cc91meYU.s:197 .text.HAL_PWREx_DisableFlashPowerDown:0000000000000000 $t
|
||||||
/tmp/ccu2BQuY.s:204 .text.HAL_PWREx_DisableFlashPowerDown:0000000000000000 HAL_PWREx_DisableFlashPowerDown
|
/tmp/cc91meYU.s:204 .text.HAL_PWREx_DisableFlashPowerDown:0000000000000000 HAL_PWREx_DisableFlashPowerDown
|
||||||
/tmp/ccu2BQuY.s:222 .text.HAL_PWREx_DisableFlashPowerDown:000000000000000c $d
|
/tmp/cc91meYU.s:222 .text.HAL_PWREx_DisableFlashPowerDown:000000000000000c $d
|
||||||
/tmp/ccu2BQuY.s:227 .text.HAL_PWREx_EnableMainRegulatorLowVoltage:0000000000000000 $t
|
/tmp/cc91meYU.s:227 .text.HAL_PWREx_EnableMainRegulatorLowVoltage:0000000000000000 $t
|
||||||
/tmp/ccu2BQuY.s:234 .text.HAL_PWREx_EnableMainRegulatorLowVoltage:0000000000000000 HAL_PWREx_EnableMainRegulatorLowVoltage
|
/tmp/cc91meYU.s:234 .text.HAL_PWREx_EnableMainRegulatorLowVoltage:0000000000000000 HAL_PWREx_EnableMainRegulatorLowVoltage
|
||||||
/tmp/ccu2BQuY.s:252 .text.HAL_PWREx_EnableMainRegulatorLowVoltage:000000000000000c $d
|
/tmp/cc91meYU.s:252 .text.HAL_PWREx_EnableMainRegulatorLowVoltage:000000000000000c $d
|
||||||
/tmp/ccu2BQuY.s:257 .text.HAL_PWREx_DisableMainRegulatorLowVoltage:0000000000000000 $t
|
/tmp/cc91meYU.s:257 .text.HAL_PWREx_DisableMainRegulatorLowVoltage:0000000000000000 $t
|
||||||
/tmp/ccu2BQuY.s:264 .text.HAL_PWREx_DisableMainRegulatorLowVoltage:0000000000000000 HAL_PWREx_DisableMainRegulatorLowVoltage
|
/tmp/cc91meYU.s:264 .text.HAL_PWREx_DisableMainRegulatorLowVoltage:0000000000000000 HAL_PWREx_DisableMainRegulatorLowVoltage
|
||||||
/tmp/ccu2BQuY.s:282 .text.HAL_PWREx_DisableMainRegulatorLowVoltage:000000000000000c $d
|
/tmp/cc91meYU.s:282 .text.HAL_PWREx_DisableMainRegulatorLowVoltage:000000000000000c $d
|
||||||
/tmp/ccu2BQuY.s:287 .text.HAL_PWREx_EnableLowRegulatorLowVoltage:0000000000000000 $t
|
/tmp/cc91meYU.s:287 .text.HAL_PWREx_EnableLowRegulatorLowVoltage:0000000000000000 $t
|
||||||
/tmp/ccu2BQuY.s:294 .text.HAL_PWREx_EnableLowRegulatorLowVoltage:0000000000000000 HAL_PWREx_EnableLowRegulatorLowVoltage
|
/tmp/cc91meYU.s:294 .text.HAL_PWREx_EnableLowRegulatorLowVoltage:0000000000000000 HAL_PWREx_EnableLowRegulatorLowVoltage
|
||||||
/tmp/ccu2BQuY.s:312 .text.HAL_PWREx_EnableLowRegulatorLowVoltage:000000000000000c $d
|
/tmp/cc91meYU.s:312 .text.HAL_PWREx_EnableLowRegulatorLowVoltage:000000000000000c $d
|
||||||
/tmp/ccu2BQuY.s:317 .text.HAL_PWREx_DisableLowRegulatorLowVoltage:0000000000000000 $t
|
/tmp/cc91meYU.s:317 .text.HAL_PWREx_DisableLowRegulatorLowVoltage:0000000000000000 $t
|
||||||
/tmp/ccu2BQuY.s:324 .text.HAL_PWREx_DisableLowRegulatorLowVoltage:0000000000000000 HAL_PWREx_DisableLowRegulatorLowVoltage
|
/tmp/cc91meYU.s:324 .text.HAL_PWREx_DisableLowRegulatorLowVoltage:0000000000000000 HAL_PWREx_DisableLowRegulatorLowVoltage
|
||||||
/tmp/ccu2BQuY.s:342 .text.HAL_PWREx_DisableLowRegulatorLowVoltage:000000000000000c $d
|
/tmp/cc91meYU.s:342 .text.HAL_PWREx_DisableLowRegulatorLowVoltage:000000000000000c $d
|
||||||
/tmp/ccu2BQuY.s:347 .text.HAL_PWREx_EnableOverDrive:0000000000000000 $t
|
/tmp/cc91meYU.s:347 .text.HAL_PWREx_EnableOverDrive:0000000000000000 $t
|
||||||
/tmp/ccu2BQuY.s:354 .text.HAL_PWREx_EnableOverDrive:0000000000000000 HAL_PWREx_EnableOverDrive
|
/tmp/cc91meYU.s:354 .text.HAL_PWREx_EnableOverDrive:0000000000000000 HAL_PWREx_EnableOverDrive
|
||||||
/tmp/ccu2BQuY.s:468 .text.HAL_PWREx_EnableOverDrive:0000000000000074 $d
|
/tmp/cc91meYU.s:468 .text.HAL_PWREx_EnableOverDrive:0000000000000074 $d
|
||||||
/tmp/ccu2BQuY.s:474 .text.HAL_PWREx_DisableOverDrive:0000000000000000 $t
|
/tmp/cc91meYU.s:474 .text.HAL_PWREx_DisableOverDrive:0000000000000000 $t
|
||||||
/tmp/ccu2BQuY.s:481 .text.HAL_PWREx_DisableOverDrive:0000000000000000 HAL_PWREx_DisableOverDrive
|
/tmp/cc91meYU.s:481 .text.HAL_PWREx_DisableOverDrive:0000000000000000 HAL_PWREx_DisableOverDrive
|
||||||
/tmp/ccu2BQuY.s:595 .text.HAL_PWREx_DisableOverDrive:0000000000000074 $d
|
/tmp/cc91meYU.s:595 .text.HAL_PWREx_DisableOverDrive:0000000000000074 $d
|
||||||
/tmp/ccu2BQuY.s:601 .text.HAL_PWREx_EnterUnderDriveSTOPMode:0000000000000000 $t
|
/tmp/cc91meYU.s:601 .text.HAL_PWREx_EnterUnderDriveSTOPMode:0000000000000000 $t
|
||||||
/tmp/ccu2BQuY.s:608 .text.HAL_PWREx_EnterUnderDriveSTOPMode:0000000000000000 HAL_PWREx_EnterUnderDriveSTOPMode
|
/tmp/cc91meYU.s:608 .text.HAL_PWREx_EnterUnderDriveSTOPMode:0000000000000000 HAL_PWREx_EnterUnderDriveSTOPMode
|
||||||
/tmp/ccu2BQuY.s:762 .text.HAL_PWREx_EnterUnderDriveSTOPMode:0000000000000084 $d
|
/tmp/cc91meYU.s:762 .text.HAL_PWREx_EnterUnderDriveSTOPMode:0000000000000084 $d
|
||||||
/tmp/ccu2BQuY.s:771 .text.HAL_PWREx_GetVoltageRange:0000000000000000 $t
|
/tmp/cc91meYU.s:771 .text.HAL_PWREx_GetVoltageRange:0000000000000000 $t
|
||||||
/tmp/ccu2BQuY.s:778 .text.HAL_PWREx_GetVoltageRange:0000000000000000 HAL_PWREx_GetVoltageRange
|
/tmp/cc91meYU.s:778 .text.HAL_PWREx_GetVoltageRange:0000000000000000 HAL_PWREx_GetVoltageRange
|
||||||
/tmp/ccu2BQuY.s:795 .text.HAL_PWREx_GetVoltageRange:000000000000000c $d
|
/tmp/cc91meYU.s:795 .text.HAL_PWREx_GetVoltageRange:000000000000000c $d
|
||||||
/tmp/ccu2BQuY.s:800 .text.HAL_PWREx_ControlVoltageScaling:0000000000000000 $t
|
/tmp/cc91meYU.s:800 .text.HAL_PWREx_ControlVoltageScaling:0000000000000000 $t
|
||||||
/tmp/ccu2BQuY.s:807 .text.HAL_PWREx_ControlVoltageScaling:0000000000000000 HAL_PWREx_ControlVoltageScaling
|
/tmp/cc91meYU.s:807 .text.HAL_PWREx_ControlVoltageScaling:0000000000000000 HAL_PWREx_ControlVoltageScaling
|
||||||
/tmp/ccu2BQuY.s:983 .text.HAL_PWREx_ControlVoltageScaling:00000000000000b8 $d
|
/tmp/cc91meYU.s:983 .text.HAL_PWREx_ControlVoltageScaling:00000000000000b8 $d
|
||||||
|
|
||||||
UNDEFINED SYMBOLS
|
UNDEFINED SYMBOLS
|
||||||
HAL_GetTick
|
HAL_GetTick
|
||||||
|
|||||||
Binary file not shown.
@ -29,7 +29,9 @@ build/stm32f7xx_hal_rcc.o: \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
||||||
Inc/stm32f7xx_hal_conf.h:
|
Inc/stm32f7xx_hal_conf.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
||||||
@ -62,3 +64,5 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/ccGCY58Q.s page 1
|
ARM GAS /tmp/ccT4Vet8.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** (if the application needs higher frequency/performance)
|
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** (if the application needs higher frequency/performance)
|
||||||
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** (+) Configure the System clock frequency and Flash settings
|
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** (+) Configure the System clock frequency and Flash settings
|
||||||
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** (+) Configure the AHB and APB buses prescalers
|
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** (+) Configure the AHB and APB buses prescalers
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 2
|
ARM GAS /tmp/ccT4Vet8.s page 2
|
||||||
|
|
||||||
|
|
||||||
32:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** (+) Enable the clock for the peripheral(s) to be used
|
32:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** (+) Enable the clock for the peripheral(s) to be used
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
||||||
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** #define MCO1_CLK_ENABLE() __HAL_RCC_GPIOA_CLK_ENABLE()
|
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** #define MCO1_CLK_ENABLE() __HAL_RCC_GPIOA_CLK_ENABLE()
|
||||||
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** #define MCO1_GPIO_PORT GPIOA
|
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** #define MCO1_GPIO_PORT GPIOA
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 3
|
ARM GAS /tmp/ccT4Vet8.s page 3
|
||||||
|
|
||||||
|
|
||||||
89:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** #define MCO1_PIN GPIO_PIN_8
|
89:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** #define MCO1_PIN GPIO_PIN_8
|
||||||
@ -178,7 +178,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** (#) CSS (Clock security system), once enable using the function HAL_RCC_EnableCSS()
|
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** (#) CSS (Clock security system), once enable using the function HAL_RCC_EnableCSS()
|
||||||
144:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** and if a HSE clock failure occurs(HSE used directly or through PLL as System
|
144:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** and if a HSE clock failure occurs(HSE used directly or through PLL as System
|
||||||
145:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** clock source), the System clock is automatically switched to HSI and an interrupt
|
145:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** clock source), the System clock is automatically switched to HSI and an interrupt
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 4
|
ARM GAS /tmp/ccT4Vet8.s page 4
|
||||||
|
|
||||||
|
|
||||||
146:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** is generated if enabled. The interrupt is linked to the Cortex-M7 NMI
|
146:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** is generated if enabled. The interrupt is linked to the Cortex-M7 NMI
|
||||||
@ -238,7 +238,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
30 @ args = 0, pretend = 0, frame = 0
|
30 @ args = 0, pretend = 0, frame = 0
|
||||||
31 @ frame_needed = 0, uses_anonymous_args = 0
|
31 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
32 0000 38B5 push {r3, r4, r5, lr}
|
32 0000 38B5 push {r3, r4, r5, lr}
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 5
|
ARM GAS /tmp/ccT4Vet8.s page 5
|
||||||
|
|
||||||
|
|
||||||
33 .LCFI0:
|
33 .LCFI0:
|
||||||
@ -298,7 +298,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
212:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
212:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
||||||
213:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
213:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
||||||
214:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
214:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 6
|
ARM GAS /tmp/ccT4Vet8.s page 6
|
||||||
|
|
||||||
|
|
||||||
215:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /* Set HSITRIM[4:0] bits to the reset value */
|
215:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /* Set HSITRIM[4:0] bits to the reset value */
|
||||||
@ -358,7 +358,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
269:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /* Wait till PLLI2S is disabled */
|
269:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /* Wait till PLLI2S is disabled */
|
||||||
270:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** while (READ_BIT(RCC->CR, RCC_CR_PLLI2SRDY) != RESET)
|
270:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** while (READ_BIT(RCC->CR, RCC_CR_PLLI2SRDY) != RESET)
|
||||||
271:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
271:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 7
|
ARM GAS /tmp/ccT4Vet8.s page 7
|
||||||
|
|
||||||
|
|
||||||
272:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** if ((HAL_GetTick() - tickstart) > PLLI2S_TIMEOUT_VALUE)
|
272:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** if ((HAL_GetTick() - tickstart) > PLLI2S_TIMEOUT_VALUE)
|
||||||
@ -418,7 +418,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
326:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
326:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
||||||
73 .loc 1 326 1 view .LVU14
|
73 .loc 1 326 1 view .LVU14
|
||||||
74 0028 38BD pop {r3, r4, r5, pc}
|
74 0028 38BD pop {r3, r4, r5, pc}
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 8
|
ARM GAS /tmp/ccT4Vet8.s page 8
|
||||||
|
|
||||||
|
|
||||||
75 .LVL4:
|
75 .LVL4:
|
||||||
@ -478,7 +478,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
115 .loc 1 234 3 is_stmt 1 view .LVU28
|
115 .loc 1 234 3 is_stmt 1 view .LVU28
|
||||||
234:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
234:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
||||||
116 .loc 1 234 15 is_stmt 0 view .LVU29
|
116 .loc 1 234 15 is_stmt 0 view .LVU29
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 9
|
ARM GAS /tmp/ccT4Vet8.s page 9
|
||||||
|
|
||||||
|
|
||||||
117 005a FFF7FEFF bl HAL_GetTick
|
117 005a FFF7FEFF bl HAL_GetTick
|
||||||
@ -538,7 +538,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
158 008c 23F08073 bic r3, r3, #16777216
|
158 008c 23F08073 bic r3, r3, #16777216
|
||||||
159 0090 1360 str r3, [r2]
|
159 0090 1360 str r3, [r2]
|
||||||
255:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
255:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 10
|
ARM GAS /tmp/ccT4Vet8.s page 10
|
||||||
|
|
||||||
|
|
||||||
160 .loc 1 255 3 view .LVU43
|
160 .loc 1 255 3 view .LVU43
|
||||||
@ -598,7 +598,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
200 00bc 1B68 ldr r3, [r3]
|
200 00bc 1B68 ldr r3, [r3]
|
||||||
270:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
270:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
||||||
201 .loc 1 270 9 view .LVU58
|
201 .loc 1 270 9 view .LVU58
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 11
|
ARM GAS /tmp/ccT4Vet8.s page 11
|
||||||
|
|
||||||
|
|
||||||
202 00be 13F0006F tst r3, #134217728
|
202 00be 13F0006F tst r3, #134217728
|
||||||
@ -658,7 +658,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
287:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
287:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
||||||
242 .loc 1 287 24 view .LVU73
|
242 .loc 1 287 24 view .LVU73
|
||||||
243 00f0 001B subs r0, r0, r4
|
243 00f0 001B subs r0, r0, r4
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 12
|
ARM GAS /tmp/ccT4Vet8.s page 12
|
||||||
|
|
||||||
|
|
||||||
287:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
287:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
||||||
@ -718,7 +718,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
318:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
318:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
||||||
284 .loc 1 318 3 is_stmt 1 view .LVU88
|
284 .loc 1 318 3 is_stmt 1 view .LVU88
|
||||||
318:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
318:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 13
|
ARM GAS /tmp/ccT4Vet8.s page 13
|
||||||
|
|
||||||
|
|
||||||
285 .loc 1 318 7 is_stmt 0 view .LVU89
|
285 .loc 1 318 7 is_stmt 0 view .LVU89
|
||||||
@ -778,7 +778,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
344:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** uint32_t tickstart;
|
344:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** uint32_t tickstart;
|
||||||
322 .loc 1 344 3 view .LVU93
|
322 .loc 1 344 3 view .LVU93
|
||||||
345:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** uint32_t pll_config;
|
345:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** uint32_t pll_config;
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 14
|
ARM GAS /tmp/ccT4Vet8.s page 14
|
||||||
|
|
||||||
|
|
||||||
323 .loc 1 345 3 view .LVU94
|
323 .loc 1 345 3 view .LVU94
|
||||||
@ -838,7 +838,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
357 .loc 1 364 14 view .LVU107
|
357 .loc 1 364 14 view .LVU107
|
||||||
358 0020 924B ldr r3, .L124
|
358 0020 924B ldr r3, .L124
|
||||||
359 0022 9B68 ldr r3, [r3, #8]
|
359 0022 9B68 ldr r3, [r3, #8]
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 15
|
ARM GAS /tmp/ccT4Vet8.s page 15
|
||||||
|
|
||||||
|
|
||||||
360 0024 03F00C03 and r3, r3, #12
|
360 0024 03F00C03 and r3, r3, #12
|
||||||
@ -898,7 +898,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
398 .loc 1 366 79 discriminator 1 view .LVU119
|
398 .loc 1 366 79 discriminator 1 view .LVU119
|
||||||
399 0060 6368 ldr r3, [r4, #4]
|
399 0060 6368 ldr r3, [r4, #4]
|
||||||
366:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
366:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 16
|
ARM GAS /tmp/ccT4Vet8.s page 16
|
||||||
|
|
||||||
|
|
||||||
400 .loc 1 366 58 discriminator 1 view .LVU120
|
400 .loc 1 366 58 discriminator 1 view .LVU120
|
||||||
@ -958,7 +958,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
413 .loc 1 415 5 view .LVU126
|
413 .loc 1 415 5 view .LVU126
|
||||||
414 .loc 1 415 10 is_stmt 0 view .LVU127
|
414 .loc 1 415 10 is_stmt 0 view .LVU127
|
||||||
415 0070 7E4B ldr r3, .L124
|
415 0070 7E4B ldr r3, .L124
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 17
|
ARM GAS /tmp/ccT4Vet8.s page 17
|
||||||
|
|
||||||
|
|
||||||
416 0072 9B68 ldr r3, [r3, #8]
|
416 0072 9B68 ldr r3, [r3, #8]
|
||||||
@ -1018,7 +1018,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
441:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /* Wait till HSI is ready */
|
441:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /* Wait till HSI is ready */
|
||||||
442:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET)
|
442:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET)
|
||||||
445 .loc 1 442 9 is_stmt 1 view .LVU137
|
445 .loc 1 442 9 is_stmt 1 view .LVU137
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 18
|
ARM GAS /tmp/ccT4Vet8.s page 18
|
||||||
|
|
||||||
|
|
||||||
446 .L49:
|
446 .L49:
|
||||||
@ -1078,7 +1078,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
487 .loc 1 383 9 is_stmt 1 view .LVU154
|
487 .loc 1 383 9 is_stmt 1 view .LVU154
|
||||||
488 .L40:
|
488 .L40:
|
||||||
383:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
383:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 19
|
ARM GAS /tmp/ccT4Vet8.s page 19
|
||||||
|
|
||||||
|
|
||||||
489 .loc 1 383 15 view .LVU155
|
489 .loc 1 383 15 view .LVU155
|
||||||
@ -1138,7 +1138,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
531 0108 42F48032 orr r2, r2, #65536
|
531 0108 42F48032 orr r2, r2, #65536
|
||||||
532 010c 1A60 str r2, [r3]
|
532 010c 1A60 str r2, [r3]
|
||||||
533 010e D7E7 b .L36
|
533 010e D7E7 b .L36
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 20
|
ARM GAS /tmp/ccT4Vet8.s page 20
|
||||||
|
|
||||||
|
|
||||||
534 .L39:
|
534 .L39:
|
||||||
@ -1198,7 +1198,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
419:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
419:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
||||||
573 .loc 1 419 12 is_stmt 0 view .LVU183
|
573 .loc 1 419 12 is_stmt 0 view .LVU183
|
||||||
574 0138 4C4B ldr r3, .L124
|
574 0138 4C4B ldr r3, .L124
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 21
|
ARM GAS /tmp/ccT4Vet8.s page 21
|
||||||
|
|
||||||
|
|
||||||
575 013a 1B68 ldr r3, [r3]
|
575 013a 1B68 ldr r3, [r3]
|
||||||
@ -1258,7 +1258,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
598 0160 46D0 beq .L53
|
598 0160 46D0 beq .L53
|
||||||
474:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
474:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
||||||
475:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /* Check the parameters */
|
475:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /* Check the parameters */
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 22
|
ARM GAS /tmp/ccT4Vet8.s page 22
|
||||||
|
|
||||||
|
|
||||||
476:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** assert_param(IS_RCC_LSI(RCC_OscInitStruct->LSIState));
|
476:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** assert_param(IS_RCC_LSI(RCC_OscInitStruct->LSIState));
|
||||||
@ -1318,7 +1318,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
636 018c 48E1 b .L31
|
636 018c 48E1 b .L31
|
||||||
637 .L114:
|
637 .L114:
|
||||||
451:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
451:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 23
|
ARM GAS /tmp/ccT4Vet8.s page 23
|
||||||
|
|
||||||
|
|
||||||
638 .loc 1 451 9 is_stmt 1 view .LVU207
|
638 .loc 1 451 9 is_stmt 1 view .LVU207
|
||||||
@ -1378,7 +1378,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
680 .LVL47:
|
680 .LVL47:
|
||||||
681 .L54:
|
681 .L54:
|
||||||
493:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
493:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 24
|
ARM GAS /tmp/ccT4Vet8.s page 24
|
||||||
|
|
||||||
|
|
||||||
494:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
494:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
||||||
@ -1438,7 +1438,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
514:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /*------------------------------ LSE Configuration -------------------------*/
|
514:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /*------------------------------ LSE Configuration -------------------------*/
|
||||||
515:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSE) == RCC_OSCILLATORTYPE_LSE)
|
515:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSE) == RCC_OSCILLATORTYPE_LSE)
|
||||||
716 .loc 1 515 3 is_stmt 1 view .LVU232
|
716 .loc 1 515 3 is_stmt 1 view .LVU232
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 25
|
ARM GAS /tmp/ccT4Vet8.s page 25
|
||||||
|
|
||||||
|
|
||||||
717 .loc 1 515 26 is_stmt 0 view .LVU233
|
717 .loc 1 515 26 is_stmt 0 view .LVU233
|
||||||
@ -1498,7 +1498,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
757 021c 13F4807F tst r3, #256
|
757 021c 13F4807F tst r3, #256
|
||||||
758 0220 10D0 beq .L116
|
758 0220 10D0 beq .L116
|
||||||
759 .L61:
|
759 .L61:
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 26
|
ARM GAS /tmp/ccT4Vet8.s page 26
|
||||||
|
|
||||||
|
|
||||||
530:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
530:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
||||||
@ -1558,7 +1558,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
535:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
535:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
||||||
792 .loc 1 535 19 is_stmt 0 view .LVU259
|
792 .loc 1 535 19 is_stmt 0 view .LVU259
|
||||||
793 024e FFF7FEFF bl HAL_GetTick
|
793 024e FFF7FEFF bl HAL_GetTick
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 27
|
ARM GAS /tmp/ccT4Vet8.s page 27
|
||||||
|
|
||||||
|
|
||||||
794 .LVL56:
|
794 .LVL56:
|
||||||
@ -1618,7 +1618,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
550:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
550:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
||||||
551:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /* Get Start Tick*/
|
551:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /* Get Start Tick*/
|
||||||
552:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** tickstart = HAL_GetTick();
|
552:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** tickstart = HAL_GetTick();
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 28
|
ARM GAS /tmp/ccT4Vet8.s page 28
|
||||||
|
|
||||||
|
|
||||||
837 .loc 1 552 7 is_stmt 1 view .LVU274
|
837 .loc 1 552 7 is_stmt 1 view .LVU274
|
||||||
@ -1678,7 +1678,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
547:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /* Check the LSE State */
|
547:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /* Check the LSE State */
|
||||||
881 .loc 1 547 5 discriminator 7 view .LVU288
|
881 .loc 1 547 5 discriminator 7 view .LVU288
|
||||||
882 02bc 604B ldr r3, .L126
|
882 02bc 604B ldr r3, .L126
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 29
|
ARM GAS /tmp/ccT4Vet8.s page 29
|
||||||
|
|
||||||
|
|
||||||
883 02be 1A6F ldr r2, [r3, #112]
|
883 02be 1A6F ldr r2, [r3, #112]
|
||||||
@ -1738,7 +1738,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
575:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
575:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
||||||
576:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
576:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
||||||
577:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
577:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 30
|
ARM GAS /tmp/ccT4Vet8.s page 30
|
||||||
|
|
||||||
|
|
||||||
578:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /* Restore clock configuration if changed */
|
578:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /* Restore clock configuration if changed */
|
||||||
@ -1798,7 +1798,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
608:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** tickstart = HAL_GetTick();
|
608:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** tickstart = HAL_GetTick();
|
||||||
609:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
609:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
||||||
610:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /* Wait till PLL is ready */
|
610:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /* Wait till PLL is ready */
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 31
|
ARM GAS /tmp/ccT4Vet8.s page 31
|
||||||
|
|
||||||
|
|
||||||
611:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET)
|
611:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET)
|
||||||
@ -1858,7 +1858,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
953 .LVL68:
|
953 .LVL68:
|
||||||
954 031a 0446 mov r4, r0
|
954 031a 0446 mov r4, r0
|
||||||
955 .LVL69:
|
955 .LVL69:
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 32
|
ARM GAS /tmp/ccT4Vet8.s page 32
|
||||||
|
|
||||||
|
|
||||||
657:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
657:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
||||||
@ -1918,7 +1918,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
995 0342 1368 ldr r3, [r2]
|
995 0342 1368 ldr r3, [r2]
|
||||||
996 0344 23F08073 bic r3, r3, #16777216
|
996 0344 23F08073 bic r3, r3, #16777216
|
||||||
997 0348 1360 str r3, [r2]
|
997 0348 1360 str r3, [r2]
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 33
|
ARM GAS /tmp/ccT4Vet8.s page 33
|
||||||
|
|
||||||
|
|
||||||
608:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
608:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
||||||
@ -1978,7 +1978,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1040 038a 2D4A ldr r2, .L126
|
1040 038a 2D4A ldr r2, .L126
|
||||||
1041 038c 5360 str r3, [r2, #4]
|
1041 038c 5360 str r3, [r2, #4]
|
||||||
636:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
636:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 34
|
ARM GAS /tmp/ccT4Vet8.s page 34
|
||||||
|
|
||||||
|
|
||||||
1042 .loc 1 636 9 view .LVU344
|
1042 .loc 1 636 9 view .LVU344
|
||||||
@ -2038,7 +2038,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
675:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** (READ_BIT(pll_config, RCC_PLLCFGR_PLLM) != RCC_OscInitStruct->PLL.PLLM) ||
|
675:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** (READ_BIT(pll_config, RCC_PLLCFGR_PLLM) != RCC_OscInitStruct->PLL.PLLM) ||
|
||||||
676:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** (READ_BIT(pll_config, RCC_PLLCFGR_PLLN) != (RCC_OscInitStruct->PLL.PLLN << RCC_PLLCFGR_PL
|
676:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** (READ_BIT(pll_config, RCC_PLLCFGR_PLLN) != (RCC_OscInitStruct->PLL.PLLN << RCC_PLLCFGR_PL
|
||||||
677:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** (READ_BIT(pll_config, RCC_PLLCFGR_PLLP) != ((((RCC_OscInitStruct->PLL.PLLP) >> 1U) - 1U)
|
677:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** (READ_BIT(pll_config, RCC_PLLCFGR_PLLP) != ((((RCC_OscInitStruct->PLL.PLLP) >> 1U) - 1U)
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 35
|
ARM GAS /tmp/ccT4Vet8.s page 35
|
||||||
|
|
||||||
|
|
||||||
678:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** (READ_BIT(pll_config, RCC_PLLCFGR_PLLQ) != (RCC_OscInitStruct->PLL.PLLQ << RCC_PLLCFGR_PL
|
678:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** (READ_BIT(pll_config, RCC_PLLCFGR_PLLQ) != (RCC_OscInitStruct->PLL.PLLQ << RCC_PLLCFGR_PL
|
||||||
@ -2098,7 +2098,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
674:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** (READ_BIT(pll_config, RCC_PLLCFGR_PLLM) != RCC_OscInitStruct->PLL.PLLM) ||
|
674:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** (READ_BIT(pll_config, RCC_PLLCFGR_PLLM) != RCC_OscInitStruct->PLL.PLLM) ||
|
||||||
1103 .loc 1 674 90 view .LVU367
|
1103 .loc 1 674 90 view .LVU367
|
||||||
1104 03d4 8B42 cmp r3, r1
|
1104 03d4 8B42 cmp r3, r1
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 36
|
ARM GAS /tmp/ccT4Vet8.s page 36
|
||||||
|
|
||||||
|
|
||||||
1105 03d6 29D1 bne .L101
|
1105 03d6 29D1 bne .L101
|
||||||
@ -2158,7 +2158,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1146 .cfi_restore 4
|
1146 .cfi_restore 4
|
||||||
1147 .cfi_restore 5
|
1147 .cfi_restore 5
|
||||||
1148 .cfi_restore 6
|
1148 .cfi_restore 6
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 37
|
ARM GAS /tmp/ccT4Vet8.s page 37
|
||||||
|
|
||||||
|
|
||||||
1149 .cfi_restore 14
|
1149 .cfi_restore 14
|
||||||
@ -2218,7 +2218,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1195 042a F9E7 b .L31
|
1195 042a F9E7 b .L31
|
||||||
1196 .L101:
|
1196 .L101:
|
||||||
1197 042c 0120 movs r0, #1
|
1197 042c 0120 movs r0, #1
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 38
|
ARM GAS /tmp/ccT4Vet8.s page 38
|
||||||
|
|
||||||
|
|
||||||
1198 042e F7E7 b .L31
|
1198 042e F7E7 b .L31
|
||||||
@ -2278,7 +2278,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
717:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * @note Depending on the device voltage range, the software has to set correctly
|
717:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * @note Depending on the device voltage range, the software has to set correctly
|
||||||
718:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * HPRE[3:0] bits to ensure that HCLK not exceed the maximum allowed frequency
|
718:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * HPRE[3:0] bits to ensure that HCLK not exceed the maximum allowed frequency
|
||||||
719:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * (for more details refer to section above "Initialization/de-initialization functions")
|
719:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * (for more details refer to section above "Initialization/de-initialization functions")
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 39
|
ARM GAS /tmp/ccT4Vet8.s page 39
|
||||||
|
|
||||||
|
|
||||||
720:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * @retval None
|
720:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * @retval None
|
||||||
@ -2338,7 +2338,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
774:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /*------------------------- SYSCLK Configuration ---------------------------*/
|
774:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /*------------------------- SYSCLK Configuration ---------------------------*/
|
||||||
775:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_SYSCLK) == RCC_CLOCKTYPE_SYSCLK)
|
775:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_SYSCLK) == RCC_CLOCKTYPE_SYSCLK)
|
||||||
776:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
776:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 40
|
ARM GAS /tmp/ccT4Vet8.s page 40
|
||||||
|
|
||||||
|
|
||||||
777:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** assert_param(IS_RCC_SYSCLKSOURCE(RCC_ClkInitStruct->SYSCLKSource));
|
777:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** assert_param(IS_RCC_SYSCLKSOURCE(RCC_ClkInitStruct->SYSCLKSource));
|
||||||
@ -2398,7 +2398,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
831:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** return HAL_ERROR;
|
831:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** return HAL_ERROR;
|
||||||
832:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
832:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
||||||
833:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
833:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 41
|
ARM GAS /tmp/ccT4Vet8.s page 41
|
||||||
|
|
||||||
|
|
||||||
834:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
834:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
||||||
@ -2458,7 +2458,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
888:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * @arg RCC_MCO1SOURCE_HSE: HSE clock selected as MCO1 source
|
888:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * @arg RCC_MCO1SOURCE_HSE: HSE clock selected as MCO1 source
|
||||||
889:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * @arg RCC_MCO1SOURCE_PLLCLK: main PLL clock selected as MCO1 source
|
889:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * @arg RCC_MCO1SOURCE_PLLCLK: main PLL clock selected as MCO1 source
|
||||||
890:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * @arg RCC_MCO2SOURCE_SYSCLK: System clock (SYSCLK) selected as MCO2 source
|
890:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * @arg RCC_MCO2SOURCE_SYSCLK: System clock (SYSCLK) selected as MCO2 source
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 42
|
ARM GAS /tmp/ccT4Vet8.s page 42
|
||||||
|
|
||||||
|
|
||||||
891:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * @arg RCC_MCO2SOURCE_PLLI2SCLK: PLLI2S clock selected as MCO2 source
|
891:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * @arg RCC_MCO2SOURCE_PLLI2SCLK: PLLI2S clock selected as MCO2 source
|
||||||
@ -2518,7 +2518,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1260 000c 336B ldr r3, [r6, #48]
|
1260 000c 336B ldr r3, [r6, #48]
|
||||||
1261 000e 43F00103 orr r3, r3, #1
|
1261 000e 43F00103 orr r3, r3, #1
|
||||||
1262 0012 3363 str r3, [r6, #48]
|
1262 0012 3363 str r3, [r6, #48]
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 43
|
ARM GAS /tmp/ccT4Vet8.s page 43
|
||||||
|
|
||||||
|
|
||||||
1263 .loc 1 915 5 view .LVU403
|
1263 .loc 1 915 5 view .LVU403
|
||||||
@ -2578,7 +2578,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1306 0044 B560 str r5, [r6, #8]
|
1306 0044 B560 str r5, [r6, #8]
|
||||||
1307 .LVL95:
|
1307 .LVL95:
|
||||||
1308 .L128:
|
1308 .L128:
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 44
|
ARM GAS /tmp/ccT4Vet8.s page 44
|
||||||
|
|
||||||
|
|
||||||
927:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
927:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
||||||
@ -2638,7 +2638,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1336 .loc 1 933 5 view .LVU428
|
1336 .loc 1 933 5 view .LVU428
|
||||||
936:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
936:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
||||||
1337 .loc 1 936 5 view .LVU429
|
1337 .loc 1 936 5 view .LVU429
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 45
|
ARM GAS /tmp/ccT4Vet8.s page 45
|
||||||
|
|
||||||
|
|
||||||
936:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
936:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
||||||
@ -2698,7 +2698,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1378 008c 00380240 .word 1073887232
|
1378 008c 00380240 .word 1073887232
|
||||||
1379 0090 00000240 .word 1073872896
|
1379 0090 00000240 .word 1073872896
|
||||||
1380 0094 00080240 .word 1073874944
|
1380 0094 00080240 .word 1073874944
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 46
|
ARM GAS /tmp/ccT4Vet8.s page 46
|
||||||
|
|
||||||
|
|
||||||
1381 .cfi_endproc
|
1381 .cfi_endproc
|
||||||
@ -2758,7 +2758,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
963:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * @brief Disables the Clock Security System.
|
963:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * @brief Disables the Clock Security System.
|
||||||
964:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * @retval None
|
964:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * @retval None
|
||||||
965:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** */
|
965:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** */
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 47
|
ARM GAS /tmp/ccT4Vet8.s page 47
|
||||||
|
|
||||||
|
|
||||||
966:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** void HAL_RCC_DisableCSS(void)
|
966:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** void HAL_RCC_DisableCSS(void)
|
||||||
@ -2818,7 +2818,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
992:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * @note This function can be used by the user application to compute the
|
992:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * @note This function can be used by the user application to compute the
|
||||||
993:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * baudrate for the communication peripherals or configure other parameters.
|
993:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * baudrate for the communication peripherals or configure other parameters.
|
||||||
994:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** *
|
994:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** *
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 48
|
ARM GAS /tmp/ccT4Vet8.s page 48
|
||||||
|
|
||||||
|
|
||||||
995:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * @note Each time SYSCLK changes, this function must be called to update the
|
995:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** * @note Each time SYSCLK changes, this function must be called to update the
|
||||||
@ -2878,7 +2878,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1478 0012 214B ldr r3, .L147
|
1478 0012 214B ldr r3, .L147
|
||||||
1479 0014 5A68 ldr r2, [r3, #4]
|
1479 0014 5A68 ldr r2, [r3, #4]
|
||||||
1480 .loc 1 1023 12 view .LVU460
|
1480 .loc 1 1023 12 view .LVU460
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 49
|
ARM GAS /tmp/ccT4Vet8.s page 49
|
||||||
|
|
||||||
|
|
||||||
1481 0016 02F03F02 and r2, r2, #63
|
1481 0016 02F03F02 and r2, r2, #63
|
||||||
@ -2938,7 +2938,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1521 .L142:
|
1521 .L142:
|
||||||
1032:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
1032:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
||||||
1522 .loc 1 1032 9 view .LVU477
|
1522 .loc 1 1032 9 view .LVU477
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 50
|
ARM GAS /tmp/ccT4Vet8.s page 50
|
||||||
|
|
||||||
|
|
||||||
1032:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
1032:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
||||||
@ -2998,7 +2998,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1046:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
1046:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
||||||
1562 .loc 1 1046 1 is_stmt 0 view .LVU486
|
1562 .loc 1 1046 1 is_stmt 0 view .LVU486
|
||||||
1563 0094 08BD pop {r3, pc}
|
1563 0094 08BD pop {r3, pc}
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 51
|
ARM GAS /tmp/ccT4Vet8.s page 51
|
||||||
|
|
||||||
|
|
||||||
1564 .L148:
|
1564 .L148:
|
||||||
@ -3058,7 +3058,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1610 .loc 1 741 6 view .LVU496
|
1610 .loc 1 741 6 view .LVU496
|
||||||
1611 0014 8B42 cmp r3, r1
|
1611 0014 8B42 cmp r3, r1
|
||||||
1612 0016 0BD2 bcs .L151
|
1612 0016 0BD2 bcs .L151
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 52
|
ARM GAS /tmp/ccT4Vet8.s page 52
|
||||||
|
|
||||||
|
|
||||||
744:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
744:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
||||||
@ -3118,7 +3118,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1653 0058 9360 str r3, [r2, #8]
|
1653 0058 9360 str r3, [r2, #8]
|
||||||
1654 .L154:
|
1654 .L154:
|
||||||
770:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** MODIFY_REG(RCC->CFGR, RCC_CFGR_HPRE, RCC_ClkInitStruct->AHBCLKDivider);
|
770:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** MODIFY_REG(RCC->CFGR, RCC_CFGR_HPRE, RCC_ClkInitStruct->AHBCLKDivider);
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 53
|
ARM GAS /tmp/ccT4Vet8.s page 53
|
||||||
|
|
||||||
|
|
||||||
1655 .loc 1 770 5 view .LVU511
|
1655 .loc 1 770 5 view .LVU511
|
||||||
@ -3178,7 +3178,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1694 0088 22F00302 bic r2, r2, #3
|
1694 0088 22F00302 bic r2, r2, #3
|
||||||
1695 008c 1343 orrs r3, r3, r2
|
1695 008c 1343 orrs r3, r3, r2
|
||||||
1696 008e 8B60 str r3, [r1, #8]
|
1696 008e 8B60 str r3, [r1, #8]
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 54
|
ARM GAS /tmp/ccT4Vet8.s page 54
|
||||||
|
|
||||||
|
|
||||||
810:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
810:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
||||||
@ -3238,7 +3238,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1735 .loc 1 783 10 view .LVU542
|
1735 .loc 1 783 10 view .LVU542
|
||||||
1736 00bc 12F4003F tst r2, #131072
|
1736 00bc 12F4003F tst r2, #131072
|
||||||
1737 00c0 E0D1 bne .L157
|
1737 00c0 E0D1 bne .L157
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 55
|
ARM GAS /tmp/ccT4Vet8.s page 55
|
||||||
|
|
||||||
|
|
||||||
785:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
785:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
||||||
@ -3298,7 +3298,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1778 00f2 AB42 cmp r3, r5
|
1778 00f2 AB42 cmp r3, r5
|
||||||
1779 00f4 2DD1 bne .L170
|
1779 00f4 2DD1 bne .L170
|
||||||
1780 .L161:
|
1780 .L161:
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 56
|
ARM GAS /tmp/ccT4Vet8.s page 56
|
||||||
|
|
||||||
|
|
||||||
836:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
836:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
||||||
@ -3358,7 +3358,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1820 .loc 1 850 63 view .LVU571
|
1820 .loc 1 850 63 view .LVU571
|
||||||
1821 0130 0B4A ldr r2, .L177+8
|
1821 0130 0B4A ldr r2, .L177+8
|
||||||
1822 0132 D35C ldrb r3, [r2, r3] @ zero_extendqisi2
|
1822 0132 D35C ldrb r3, [r2, r3] @ zero_extendqisi2
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 57
|
ARM GAS /tmp/ccT4Vet8.s page 57
|
||||||
|
|
||||||
|
|
||||||
850:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
850:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
||||||
@ -3418,7 +3418,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
803:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
803:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
||||||
1867 .loc 1 803 16 view .LVU582
|
1867 .loc 1 803 16 view .LVU582
|
||||||
1868 014e 0120 movs r0, #1
|
1868 014e 0120 movs r0, #1
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 58
|
ARM GAS /tmp/ccT4Vet8.s page 58
|
||||||
|
|
||||||
|
|
||||||
1869 .LVL127:
|
1869 .LVL127:
|
||||||
@ -3478,7 +3478,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1911 0008 00000000 .word SystemCoreClock
|
1911 0008 00000000 .word SystemCoreClock
|
||||||
1912 .cfi_endproc
|
1912 .cfi_endproc
|
||||||
1913 .LFE148:
|
1913 .LFE148:
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 59
|
ARM GAS /tmp/ccT4Vet8.s page 59
|
||||||
|
|
||||||
|
|
||||||
1915 .section .text.HAL_RCC_GetPCLK1Freq,"ax",%progbits
|
1915 .section .text.HAL_RCC_GetPCLK1Freq,"ax",%progbits
|
||||||
@ -3538,7 +3538,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1959 .global HAL_RCC_GetPCLK2Freq
|
1959 .global HAL_RCC_GetPCLK2Freq
|
||||||
1960 .syntax unified
|
1960 .syntax unified
|
||||||
1961 .thumb
|
1961 .thumb
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 60
|
ARM GAS /tmp/ccT4Vet8.s page 60
|
||||||
|
|
||||||
|
|
||||||
1962 .thumb_func
|
1962 .thumb_func
|
||||||
@ -3598,7 +3598,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
2007 HAL_RCC_GetOscConfig:
|
2007 HAL_RCC_GetOscConfig:
|
||||||
2008 .LVL131:
|
2008 .LVL131:
|
||||||
2009 .LFB151:
|
2009 .LFB151:
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 61
|
ARM GAS /tmp/ccT4Vet8.s page 61
|
||||||
|
|
||||||
|
|
||||||
1083:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
1083:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
||||||
@ -3658,7 +3658,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
2035 .loc 1 1111 6 view .LVU612
|
2035 .loc 1 1111 6 view .LVU612
|
||||||
2036 0018 13F0010F tst r3, #1
|
2036 0018 13F0010F tst r3, #1
|
||||||
2037 001c 4AD0 beq .L194
|
2037 001c 4AD0 beq .L194
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 62
|
ARM GAS /tmp/ccT4Vet8.s page 62
|
||||||
|
|
||||||
|
|
||||||
1112:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
1112:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
||||||
@ -3718,7 +3718,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
2066 .loc 1 1137 6 view .LVU626
|
2066 .loc 1 1137 6 view .LVU626
|
||||||
2067 003c 13F0010F tst r3, #1
|
2067 003c 13F0010F tst r3, #1
|
||||||
2068 0040 46D0 beq .L199
|
2068 0040 46D0 beq .L199
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 63
|
ARM GAS /tmp/ccT4Vet8.s page 63
|
||||||
|
|
||||||
|
|
||||||
1138:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
1138:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
||||||
@ -3778,7 +3778,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
2103 0066 5368 ldr r3, [r2, #4]
|
2103 0066 5368 ldr r3, [r2, #4]
|
||||||
2104 .loc 1 1157 33 view .LVU644
|
2104 .loc 1 1157 33 view .LVU644
|
||||||
2105 0068 C3F38813 ubfx r3, r3, #6, #9
|
2105 0068 C3F38813 ubfx r3, r3, #6, #9
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 64
|
ARM GAS /tmp/ccT4Vet8.s page 64
|
||||||
|
|
||||||
|
|
||||||
2106 .loc 1 1157 31 view .LVU645
|
2106 .loc 1 1157 31 view .LVU645
|
||||||
@ -3838,7 +3838,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
22:Drivers/CMSIS/Include/cmsis_gcc.h **** * limitations under the License.
|
22:Drivers/CMSIS/Include/cmsis_gcc.h **** * limitations under the License.
|
||||||
23:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
23:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
24:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
24:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 65
|
ARM GAS /tmp/ccT4Vet8.s page 65
|
||||||
|
|
||||||
|
|
||||||
25:Drivers/CMSIS/Include/cmsis_gcc.h **** #ifndef __CMSIS_GCC_H
|
25:Drivers/CMSIS/Include/cmsis_gcc.h **** #ifndef __CMSIS_GCC_H
|
||||||
@ -3898,7 +3898,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
79:Drivers/CMSIS/Include/cmsis_gcc.h **** #pragma GCC diagnostic push
|
79:Drivers/CMSIS/Include/cmsis_gcc.h **** #pragma GCC diagnostic push
|
||||||
80:Drivers/CMSIS/Include/cmsis_gcc.h **** #pragma GCC diagnostic ignored "-Wpacked"
|
80:Drivers/CMSIS/Include/cmsis_gcc.h **** #pragma GCC diagnostic ignored "-Wpacked"
|
||||||
81:Drivers/CMSIS/Include/cmsis_gcc.h **** #pragma GCC diagnostic ignored "-Wattributes"
|
81:Drivers/CMSIS/Include/cmsis_gcc.h **** #pragma GCC diagnostic ignored "-Wattributes"
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 66
|
ARM GAS /tmp/ccT4Vet8.s page 66
|
||||||
|
|
||||||
|
|
||||||
82:Drivers/CMSIS/Include/cmsis_gcc.h **** __PACKED_STRUCT T_UINT16_WRITE { uint16_t v; };
|
82:Drivers/CMSIS/Include/cmsis_gcc.h **** __PACKED_STRUCT T_UINT16_WRITE { uint16_t v; };
|
||||||
@ -3958,7 +3958,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
136:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Disable IRQ Interrupts
|
136:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Disable IRQ Interrupts
|
||||||
137:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Disables IRQ interrupts by setting the I-bit in the CPSR.
|
137:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Disables IRQ interrupts by setting the I-bit in the CPSR.
|
||||||
138:Drivers/CMSIS/Include/cmsis_gcc.h **** Can only be executed in Privileged modes.
|
138:Drivers/CMSIS/Include/cmsis_gcc.h **** Can only be executed in Privileged modes.
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 67
|
ARM GAS /tmp/ccT4Vet8.s page 67
|
||||||
|
|
||||||
|
|
||||||
139:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
139:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
@ -4018,7 +4018,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
193:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE void __TZ_set_CONTROL_NS(uint32_t control)
|
193:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE void __TZ_set_CONTROL_NS(uint32_t control)
|
||||||
194:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
194:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
195:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MSR control_ns, %0" : : "r" (control) : "memory");
|
195:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MSR control_ns, %0" : : "r" (control) : "memory");
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 68
|
ARM GAS /tmp/ccT4Vet8.s page 68
|
||||||
|
|
||||||
|
|
||||||
196:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
196:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
||||||
@ -4078,7 +4078,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
250:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
250:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
251:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, psp" : "=r" (result) );
|
251:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, psp" : "=r" (result) );
|
||||||
252:Drivers/CMSIS/Include/cmsis_gcc.h **** return(result);
|
252:Drivers/CMSIS/Include/cmsis_gcc.h **** return(result);
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 69
|
ARM GAS /tmp/ccT4Vet8.s page 69
|
||||||
|
|
||||||
|
|
||||||
253:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
253:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
||||||
@ -4138,7 +4138,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
307:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
307:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
||||||
308:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
308:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
309:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
309:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 70
|
ARM GAS /tmp/ccT4Vet8.s page 70
|
||||||
|
|
||||||
|
|
||||||
310:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (defined (__ARM_FEATURE_CMSE ) && (__ARM_FEATURE_CMSE == 3))
|
310:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (defined (__ARM_FEATURE_CMSE ) && (__ARM_FEATURE_CMSE == 3))
|
||||||
@ -4198,7 +4198,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
364:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
364:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
365:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
365:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
||||||
366:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Set Stack Pointer (non-secure)
|
366:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Set Stack Pointer (non-secure)
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 71
|
ARM GAS /tmp/ccT4Vet8.s page 71
|
||||||
|
|
||||||
|
|
||||||
367:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Assigns the given value to the non-secure Stack Pointer (SP) when in secure state.
|
367:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Assigns the given value to the non-secure Stack Pointer (SP) when in secure state.
|
||||||
@ -4258,7 +4258,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
421:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Assigns the given value to the non-secure Priority Mask Register when in secure state.
|
421:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Assigns the given value to the non-secure Priority Mask Register when in secure state.
|
||||||
422:Drivers/CMSIS/Include/cmsis_gcc.h **** \param [in] priMask Priority Mask
|
422:Drivers/CMSIS/Include/cmsis_gcc.h **** \param [in] priMask Priority Mask
|
||||||
423:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
423:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 72
|
ARM GAS /tmp/ccT4Vet8.s page 72
|
||||||
|
|
||||||
|
|
||||||
424:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE void __TZ_set_PRIMASK_NS(uint32_t priMask)
|
424:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE void __TZ_set_PRIMASK_NS(uint32_t priMask)
|
||||||
@ -4318,7 +4318,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
478:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
478:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
||||||
479:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
479:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
480:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, basepri_ns" : "=r" (result) );
|
480:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, basepri_ns" : "=r" (result) );
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 73
|
ARM GAS /tmp/ccT4Vet8.s page 73
|
||||||
|
|
||||||
|
|
||||||
481:Drivers/CMSIS/Include/cmsis_gcc.h **** return(result);
|
481:Drivers/CMSIS/Include/cmsis_gcc.h **** return(result);
|
||||||
@ -4378,7 +4378,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
535:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
535:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
536:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (defined (__ARM_FEATURE_CMSE ) && (__ARM_FEATURE_CMSE == 3))
|
536:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (defined (__ARM_FEATURE_CMSE ) && (__ARM_FEATURE_CMSE == 3))
|
||||||
537:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
537:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 74
|
ARM GAS /tmp/ccT4Vet8.s page 74
|
||||||
|
|
||||||
|
|
||||||
538:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Get Fault Mask (non-secure)
|
538:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Get Fault Mask (non-secure)
|
||||||
@ -4438,7 +4438,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
592:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __get_PSPLIM(void)
|
592:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __get_PSPLIM(void)
|
||||||
593:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
593:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
594:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (!(defined (__ARM_ARCH_8M_MAIN__ ) && (__ARM_ARCH_8M_MAIN__ == 1)) && \
|
594:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (!(defined (__ARM_ARCH_8M_MAIN__ ) && (__ARM_ARCH_8M_MAIN__ == 1)) && \
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 75
|
ARM GAS /tmp/ccT4Vet8.s page 75
|
||||||
|
|
||||||
|
|
||||||
595:Drivers/CMSIS/Include/cmsis_gcc.h **** (!defined (__ARM_FEATURE_CMSE) || (__ARM_FEATURE_CMSE < 3)))
|
595:Drivers/CMSIS/Include/cmsis_gcc.h **** (!defined (__ARM_FEATURE_CMSE) || (__ARM_FEATURE_CMSE < 3)))
|
||||||
@ -4498,7 +4498,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
649:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (defined (__ARM_FEATURE_CMSE ) && (__ARM_FEATURE_CMSE == 3))
|
649:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (defined (__ARM_FEATURE_CMSE ) && (__ARM_FEATURE_CMSE == 3))
|
||||||
650:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
650:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
||||||
651:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Set Process Stack Pointer (non-secure)
|
651:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Set Process Stack Pointer (non-secure)
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 76
|
ARM GAS /tmp/ccT4Vet8.s page 76
|
||||||
|
|
||||||
|
|
||||||
652:Drivers/CMSIS/Include/cmsis_gcc.h **** Devices without ARMv8-M Main Extensions (i.e. Cortex-M23) lack the non-secure
|
652:Drivers/CMSIS/Include/cmsis_gcc.h **** Devices without ARMv8-M Main Extensions (i.e. Cortex-M23) lack the non-secure
|
||||||
@ -4558,7 +4558,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
706:Drivers/CMSIS/Include/cmsis_gcc.h **** return 0U;
|
706:Drivers/CMSIS/Include/cmsis_gcc.h **** return 0U;
|
||||||
707:Drivers/CMSIS/Include/cmsis_gcc.h **** #else
|
707:Drivers/CMSIS/Include/cmsis_gcc.h **** #else
|
||||||
708:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
708:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 77
|
ARM GAS /tmp/ccT4Vet8.s page 77
|
||||||
|
|
||||||
|
|
||||||
709:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, msplim_ns" : "=r" (result) );
|
709:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, msplim_ns" : "=r" (result) );
|
||||||
@ -4618,7 +4618,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
763:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the current value of the Floating Point Status/Control register.
|
763:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the current value of the Floating Point Status/Control register.
|
||||||
764:Drivers/CMSIS/Include/cmsis_gcc.h **** \return Floating Point Status/Control register value
|
764:Drivers/CMSIS/Include/cmsis_gcc.h **** \return Floating Point Status/Control register value
|
||||||
765:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
765:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 78
|
ARM GAS /tmp/ccT4Vet8.s page 78
|
||||||
|
|
||||||
|
|
||||||
766:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __get_FPSCR(void)
|
766:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE uint32_t __get_FPSCR(void)
|
||||||
@ -4678,7 +4678,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
820:Drivers/CMSIS/Include/cmsis_gcc.h **** * For thumb1, use low register (r0-r7), specified by constraint "l"
|
820:Drivers/CMSIS/Include/cmsis_gcc.h **** * For thumb1, use low register (r0-r7), specified by constraint "l"
|
||||||
821:Drivers/CMSIS/Include/cmsis_gcc.h **** * Otherwise, use general registers, specified by constraint "r" */
|
821:Drivers/CMSIS/Include/cmsis_gcc.h **** * Otherwise, use general registers, specified by constraint "r" */
|
||||||
822:Drivers/CMSIS/Include/cmsis_gcc.h **** #if defined (__thumb__) && !defined (__thumb2__)
|
822:Drivers/CMSIS/Include/cmsis_gcc.h **** #if defined (__thumb__) && !defined (__thumb2__)
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 79
|
ARM GAS /tmp/ccT4Vet8.s page 79
|
||||||
|
|
||||||
|
|
||||||
823:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __CMSIS_GCC_OUT_REG(r) "=l" (r)
|
823:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __CMSIS_GCC_OUT_REG(r) "=l" (r)
|
||||||
@ -4738,7 +4738,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
877:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE void __DSB(void)
|
877:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE void __DSB(void)
|
||||||
878:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
878:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
879:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("dsb 0xF":::"memory");
|
879:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("dsb 0xF":::"memory");
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 80
|
ARM GAS /tmp/ccT4Vet8.s page 80
|
||||||
|
|
||||||
|
|
||||||
880:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
880:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
||||||
@ -4798,7 +4798,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
934:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE int16_t __REVSH(int16_t value)
|
934:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE int16_t __REVSH(int16_t value)
|
||||||
935:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
935:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
936:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)
|
936:Drivers/CMSIS/Include/cmsis_gcc.h **** #if (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 81
|
ARM GAS /tmp/ccT4Vet8.s page 81
|
||||||
|
|
||||||
|
|
||||||
937:Drivers/CMSIS/Include/cmsis_gcc.h **** return (int16_t)__builtin_bswap16(value);
|
937:Drivers/CMSIS/Include/cmsis_gcc.h **** return (int16_t)__builtin_bswap16(value);
|
||||||
@ -4858,7 +4858,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
988:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("rbit %0, %1" : "=r" (result) : "r" (value) );
|
988:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("rbit %0, %1" : "=r" (result) : "r" (value) );
|
||||||
2138 .loc 2 988 4 view .LVU661
|
2138 .loc 2 988 4 view .LVU661
|
||||||
2139 008a 4FF0E042 mov r2, #1879048192
|
2139 008a 4FF0E042 mov r2, #1879048192
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 82
|
ARM GAS /tmp/ccT4Vet8.s page 82
|
||||||
|
|
||||||
|
|
||||||
2140 .syntax unified
|
2140 .syntax unified
|
||||||
@ -4918,7 +4918,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1107:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
1107:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** }
|
||||||
2173 .loc 1 1107 33 is_stmt 0 view .LVU673
|
2173 .loc 1 1107 33 is_stmt 0 view .LVU673
|
||||||
2174 00ae 0023 movs r3, #0
|
2174 00ae 0023 movs r3, #0
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 83
|
ARM GAS /tmp/ccT4Vet8.s page 83
|
||||||
|
|
||||||
|
|
||||||
2175 00b0 4360 str r3, [r0, #4]
|
2175 00b0 4360 str r3, [r0, #4]
|
||||||
@ -4978,7 +4978,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
2216 .L203:
|
2216 .L203:
|
||||||
2217 00dc 00380240 .word 1073887232
|
2217 00dc 00380240 .word 1073887232
|
||||||
2218 .cfi_endproc
|
2218 .cfi_endproc
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 84
|
ARM GAS /tmp/ccT4Vet8.s page 84
|
||||||
|
|
||||||
|
|
||||||
2219 .LFE151:
|
2219 .LFE151:
|
||||||
@ -5038,7 +5038,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1183:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
1183:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c ****
|
||||||
1184:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /* Get the APB1 configuration ----------------------------------------------*/
|
1184:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /* Get the APB1 configuration ----------------------------------------------*/
|
||||||
1185:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** RCC_ClkInitStruct->APB1CLKDivider = (uint32_t)(RCC->CFGR & RCC_CFGR_PPRE1);
|
1185:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** RCC_ClkInitStruct->APB1CLKDivider = (uint32_t)(RCC->CFGR & RCC_CFGR_PPRE1);
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 85
|
ARM GAS /tmp/ccT4Vet8.s page 85
|
||||||
|
|
||||||
|
|
||||||
2256 .loc 1 1185 3 is_stmt 1 view .LVU698
|
2256 .loc 1 1185 3 is_stmt 1 view .LVU698
|
||||||
@ -5098,7 +5098,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1199:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** void HAL_RCC_NMI_IRQHandler(void)
|
1199:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** void HAL_RCC_NMI_IRQHandler(void)
|
||||||
1200:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
1200:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
||||||
1201:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /* Check RCC CSSF flag */
|
1201:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** /* Check RCC CSSF flag */
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 86
|
ARM GAS /tmp/ccT4Vet8.s page 86
|
||||||
|
|
||||||
|
|
||||||
1202:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** if (__HAL_RCC_GET_IT(RCC_IT_CSS))
|
1202:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** if (__HAL_RCC_GET_IT(RCC_IT_CSS))
|
||||||
@ -5158,7 +5158,7 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
1202:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
1202:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c **** {
|
||||||
2332 .loc 1 1202 6 view .LVU716
|
2332 .loc 1 1202 6 view .LVU716
|
||||||
2333 0006 13F0800F tst r3, #128
|
2333 0006 13F0800F tst r3, #128
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 87
|
ARM GAS /tmp/ccT4Vet8.s page 87
|
||||||
|
|
||||||
|
|
||||||
2334 000a 00D1 bne .L212
|
2334 000a 00D1 bne .L212
|
||||||
@ -5196,54 +5196,54 @@ ARM GAS /tmp/ccGCY58Q.s page 1
|
|||||||
2363 .file 9 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h"
|
2363 .file 9 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h"
|
||||||
2364 .file 10 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio.h"
|
2364 .file 10 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio.h"
|
||||||
2365 .file 11 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h"
|
2365 .file 11 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h"
|
||||||
ARM GAS /tmp/ccGCY58Q.s page 88
|
ARM GAS /tmp/ccT4Vet8.s page 88
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 stm32f7xx_hal_rcc.c
|
*ABS*:0000000000000000 stm32f7xx_hal_rcc.c
|
||||||
/tmp/ccGCY58Q.s:17 .text.HAL_RCC_DeInit:0000000000000000 $t
|
/tmp/ccT4Vet8.s:17 .text.HAL_RCC_DeInit:0000000000000000 $t
|
||||||
/tmp/ccGCY58Q.s:25 .text.HAL_RCC_DeInit:0000000000000000 HAL_RCC_DeInit
|
/tmp/ccT4Vet8.s:25 .text.HAL_RCC_DeInit:0000000000000000 HAL_RCC_DeInit
|
||||||
/tmp/ccGCY58Q.s:299 .text.HAL_RCC_DeInit:0000000000000144 $d
|
/tmp/ccT4Vet8.s:299 .text.HAL_RCC_DeInit:0000000000000144 $d
|
||||||
/tmp/ccGCY58Q.s:308 .text.HAL_RCC_OscConfig:0000000000000000 $t
|
/tmp/ccT4Vet8.s:308 .text.HAL_RCC_OscConfig:0000000000000000 $t
|
||||||
/tmp/ccGCY58Q.s:315 .text.HAL_RCC_OscConfig:0000000000000000 HAL_RCC_OscConfig
|
/tmp/ccT4Vet8.s:315 .text.HAL_RCC_OscConfig:0000000000000000 HAL_RCC_OscConfig
|
||||||
/tmp/ccGCY58Q.s:821 .text.HAL_RCC_OscConfig:000000000000026c $d
|
/tmp/ccT4Vet8.s:821 .text.HAL_RCC_OscConfig:000000000000026c $d
|
||||||
/tmp/ccGCY58Q.s:826 .text.HAL_RCC_OscConfig:0000000000000274 $t
|
/tmp/ccT4Vet8.s:826 .text.HAL_RCC_OscConfig:0000000000000274 $t
|
||||||
/tmp/ccGCY58Q.s:1216 .text.HAL_RCC_OscConfig:0000000000000440 $d
|
/tmp/ccT4Vet8.s:1216 .text.HAL_RCC_OscConfig:0000000000000440 $d
|
||||||
/tmp/ccGCY58Q.s:1221 .text.HAL_RCC_MCOConfig:0000000000000000 $t
|
/tmp/ccT4Vet8.s:1221 .text.HAL_RCC_MCOConfig:0000000000000000 $t
|
||||||
/tmp/ccGCY58Q.s:1228 .text.HAL_RCC_MCOConfig:0000000000000000 HAL_RCC_MCOConfig
|
/tmp/ccT4Vet8.s:1228 .text.HAL_RCC_MCOConfig:0000000000000000 HAL_RCC_MCOConfig
|
||||||
/tmp/ccGCY58Q.s:1378 .text.HAL_RCC_MCOConfig:000000000000008c $d
|
/tmp/ccT4Vet8.s:1378 .text.HAL_RCC_MCOConfig:000000000000008c $d
|
||||||
/tmp/ccGCY58Q.s:1385 .text.HAL_RCC_EnableCSS:0000000000000000 $t
|
/tmp/ccT4Vet8.s:1385 .text.HAL_RCC_EnableCSS:0000000000000000 $t
|
||||||
/tmp/ccGCY58Q.s:1392 .text.HAL_RCC_EnableCSS:0000000000000000 HAL_RCC_EnableCSS
|
/tmp/ccT4Vet8.s:1392 .text.HAL_RCC_EnableCSS:0000000000000000 HAL_RCC_EnableCSS
|
||||||
/tmp/ccGCY58Q.s:1409 .text.HAL_RCC_EnableCSS:000000000000000c $d
|
/tmp/ccT4Vet8.s:1409 .text.HAL_RCC_EnableCSS:000000000000000c $d
|
||||||
/tmp/ccGCY58Q.s:1414 .text.HAL_RCC_DisableCSS:0000000000000000 $t
|
/tmp/ccT4Vet8.s:1414 .text.HAL_RCC_DisableCSS:0000000000000000 $t
|
||||||
/tmp/ccGCY58Q.s:1421 .text.HAL_RCC_DisableCSS:0000000000000000 HAL_RCC_DisableCSS
|
/tmp/ccT4Vet8.s:1421 .text.HAL_RCC_DisableCSS:0000000000000000 HAL_RCC_DisableCSS
|
||||||
/tmp/ccGCY58Q.s:1438 .text.HAL_RCC_DisableCSS:000000000000000c $d
|
/tmp/ccT4Vet8.s:1438 .text.HAL_RCC_DisableCSS:000000000000000c $d
|
||||||
/tmp/ccGCY58Q.s:1444 .text.HAL_RCC_GetSysClockFreq:0000000000000000 $t
|
/tmp/ccT4Vet8.s:1444 .text.HAL_RCC_GetSysClockFreq:0000000000000000 $t
|
||||||
/tmp/ccGCY58Q.s:1451 .text.HAL_RCC_GetSysClockFreq:0000000000000000 HAL_RCC_GetSysClockFreq
|
/tmp/ccT4Vet8.s:1451 .text.HAL_RCC_GetSysClockFreq:0000000000000000 HAL_RCC_GetSysClockFreq
|
||||||
/tmp/ccGCY58Q.s:1567 .text.HAL_RCC_GetSysClockFreq:0000000000000098 $d
|
/tmp/ccT4Vet8.s:1567 .text.HAL_RCC_GetSysClockFreq:0000000000000098 $d
|
||||||
/tmp/ccGCY58Q.s:1574 .text.HAL_RCC_ClockConfig:0000000000000000 $t
|
/tmp/ccT4Vet8.s:1574 .text.HAL_RCC_ClockConfig:0000000000000000 $t
|
||||||
/tmp/ccGCY58Q.s:1581 .text.HAL_RCC_ClockConfig:0000000000000000 HAL_RCC_ClockConfig
|
/tmp/ccT4Vet8.s:1581 .text.HAL_RCC_ClockConfig:0000000000000000 HAL_RCC_ClockConfig
|
||||||
/tmp/ccGCY58Q.s:1880 .text.HAL_RCC_ClockConfig:0000000000000158 $d
|
/tmp/ccT4Vet8.s:1880 .text.HAL_RCC_ClockConfig:0000000000000158 $d
|
||||||
/tmp/ccGCY58Q.s:1889 .text.HAL_RCC_GetHCLKFreq:0000000000000000 $t
|
/tmp/ccT4Vet8.s:1889 .text.HAL_RCC_GetHCLKFreq:0000000000000000 $t
|
||||||
/tmp/ccGCY58Q.s:1896 .text.HAL_RCC_GetHCLKFreq:0000000000000000 HAL_RCC_GetHCLKFreq
|
/tmp/ccT4Vet8.s:1896 .text.HAL_RCC_GetHCLKFreq:0000000000000000 HAL_RCC_GetHCLKFreq
|
||||||
/tmp/ccGCY58Q.s:1911 .text.HAL_RCC_GetHCLKFreq:0000000000000008 $d
|
/tmp/ccT4Vet8.s:1911 .text.HAL_RCC_GetHCLKFreq:0000000000000008 $d
|
||||||
/tmp/ccGCY58Q.s:1916 .text.HAL_RCC_GetPCLK1Freq:0000000000000000 $t
|
/tmp/ccT4Vet8.s:1916 .text.HAL_RCC_GetPCLK1Freq:0000000000000000 $t
|
||||||
/tmp/ccGCY58Q.s:1923 .text.HAL_RCC_GetPCLK1Freq:0000000000000000 HAL_RCC_GetPCLK1Freq
|
/tmp/ccT4Vet8.s:1923 .text.HAL_RCC_GetPCLK1Freq:0000000000000000 HAL_RCC_GetPCLK1Freq
|
||||||
/tmp/ccGCY58Q.s:1952 .text.HAL_RCC_GetPCLK1Freq:0000000000000018 $d
|
/tmp/ccT4Vet8.s:1952 .text.HAL_RCC_GetPCLK1Freq:0000000000000018 $d
|
||||||
/tmp/ccGCY58Q.s:1958 .text.HAL_RCC_GetPCLK2Freq:0000000000000000 $t
|
/tmp/ccT4Vet8.s:1958 .text.HAL_RCC_GetPCLK2Freq:0000000000000000 $t
|
||||||
/tmp/ccGCY58Q.s:1965 .text.HAL_RCC_GetPCLK2Freq:0000000000000000 HAL_RCC_GetPCLK2Freq
|
/tmp/ccT4Vet8.s:1965 .text.HAL_RCC_GetPCLK2Freq:0000000000000000 HAL_RCC_GetPCLK2Freq
|
||||||
/tmp/ccGCY58Q.s:1994 .text.HAL_RCC_GetPCLK2Freq:0000000000000018 $d
|
/tmp/ccT4Vet8.s:1994 .text.HAL_RCC_GetPCLK2Freq:0000000000000018 $d
|
||||||
/tmp/ccGCY58Q.s:2000 .text.HAL_RCC_GetOscConfig:0000000000000000 $t
|
/tmp/ccT4Vet8.s:2000 .text.HAL_RCC_GetOscConfig:0000000000000000 $t
|
||||||
/tmp/ccGCY58Q.s:2007 .text.HAL_RCC_GetOscConfig:0000000000000000 HAL_RCC_GetOscConfig
|
/tmp/ccT4Vet8.s:2007 .text.HAL_RCC_GetOscConfig:0000000000000000 HAL_RCC_GetOscConfig
|
||||||
/tmp/ccGCY58Q.s:2217 .text.HAL_RCC_GetOscConfig:00000000000000dc $d
|
/tmp/ccT4Vet8.s:2217 .text.HAL_RCC_GetOscConfig:00000000000000dc $d
|
||||||
/tmp/ccGCY58Q.s:2222 .text.HAL_RCC_GetClockConfig:0000000000000000 $t
|
/tmp/ccT4Vet8.s:2222 .text.HAL_RCC_GetClockConfig:0000000000000000 $t
|
||||||
/tmp/ccGCY58Q.s:2229 .text.HAL_RCC_GetClockConfig:0000000000000000 HAL_RCC_GetClockConfig
|
/tmp/ccT4Vet8.s:2229 .text.HAL_RCC_GetClockConfig:0000000000000000 HAL_RCC_GetClockConfig
|
||||||
/tmp/ccGCY58Q.s:2284 .text.HAL_RCC_GetClockConfig:0000000000000034 $d
|
/tmp/ccT4Vet8.s:2284 .text.HAL_RCC_GetClockConfig:0000000000000034 $d
|
||||||
/tmp/ccGCY58Q.s:2290 .text.HAL_RCC_CSSCallback:0000000000000000 $t
|
/tmp/ccT4Vet8.s:2290 .text.HAL_RCC_CSSCallback:0000000000000000 $t
|
||||||
/tmp/ccGCY58Q.s:2297 .text.HAL_RCC_CSSCallback:0000000000000000 HAL_RCC_CSSCallback
|
/tmp/ccT4Vet8.s:2297 .text.HAL_RCC_CSSCallback:0000000000000000 HAL_RCC_CSSCallback
|
||||||
/tmp/ccGCY58Q.s:2310 .text.HAL_RCC_NMI_IRQHandler:0000000000000000 $t
|
/tmp/ccT4Vet8.s:2310 .text.HAL_RCC_NMI_IRQHandler:0000000000000000 $t
|
||||||
/tmp/ccGCY58Q.s:2317 .text.HAL_RCC_NMI_IRQHandler:0000000000000000 HAL_RCC_NMI_IRQHandler
|
/tmp/ccT4Vet8.s:2317 .text.HAL_RCC_NMI_IRQHandler:0000000000000000 HAL_RCC_NMI_IRQHandler
|
||||||
/tmp/ccGCY58Q.s:2351 .text.HAL_RCC_NMI_IRQHandler:000000000000001c $d
|
/tmp/ccT4Vet8.s:2351 .text.HAL_RCC_NMI_IRQHandler:000000000000001c $d
|
||||||
|
|
||||||
UNDEFINED SYMBOLS
|
UNDEFINED SYMBOLS
|
||||||
HAL_GetTick
|
HAL_GetTick
|
||||||
|
|||||||
Binary file not shown.
@ -29,7 +29,9 @@ build/stm32f7xx_hal_rcc_ex.o: \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
||||||
Inc/stm32f7xx_hal_conf.h:
|
Inc/stm32f7xx_hal_conf.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
||||||
@ -62,3 +64,5 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/ccj9xBix.s page 1
|
ARM GAS /tmp/ccrobTL8.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
28:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
28:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /** @defgroup RCCEx RCCEx
|
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /** @defgroup RCCEx RCCEx
|
||||||
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** * @brief RCCEx HAL module driver
|
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** * @brief RCCEx HAL module driver
|
||||||
ARM GAS /tmp/ccj9xBix.s page 2
|
ARM GAS /tmp/ccrobTL8.s page 2
|
||||||
|
|
||||||
|
|
||||||
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** * @{
|
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** * @{
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
85:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** @endverbatim
|
85:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** @endverbatim
|
||||||
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** * @{
|
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** * @{
|
||||||
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** */
|
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** */
|
||||||
ARM GAS /tmp/ccj9xBix.s page 3
|
ARM GAS /tmp/ccrobTL8.s page 3
|
||||||
|
|
||||||
|
|
||||||
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** #if defined (STM32F745xx) || defined (STM32F746xx) || defined (STM32F756xx) || defined (STM32F765xx
|
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** #if defined (STM32F745xx) || defined (STM32F746xx) || defined (STM32F756xx) || defined (STM32F765xx
|
||||||
@ -178,7 +178,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
53 .loc 1 117 3 view .LVU8
|
53 .loc 1 117 3 view .LVU8
|
||||||
54 .loc 1 117 21 is_stmt 0 view .LVU9
|
54 .loc 1 117 21 is_stmt 0 view .LVU9
|
||||||
55 0006 0668 ldr r6, [r0]
|
55 0006 0668 ldr r6, [r0]
|
||||||
ARM GAS /tmp/ccj9xBix.s page 4
|
ARM GAS /tmp/ccrobTL8.s page 4
|
||||||
|
|
||||||
|
|
||||||
56 .loc 1 117 5 view .LVU10
|
56 .loc 1 117 5 view .LVU10
|
||||||
@ -238,7 +238,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
138:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Configure SAI1 Clock source */
|
138:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Configure SAI1 Clock source */
|
||||||
139:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** __HAL_RCC_SAI1_CONFIG(PeriphClkInit->Sai1ClockSelection);
|
139:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** __HAL_RCC_SAI1_CONFIG(PeriphClkInit->Sai1ClockSelection);
|
||||||
89 .loc 1 139 5 view .LVU24
|
89 .loc 1 139 5 view .LVU24
|
||||||
ARM GAS /tmp/ccj9xBix.s page 5
|
ARM GAS /tmp/ccrobTL8.s page 5
|
||||||
|
|
||||||
|
|
||||||
90 0032 AC4A ldr r2, .L87
|
90 0032 AC4A ldr r2, .L87
|
||||||
@ -298,7 +298,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
123 0068 216C ldr r1, [r4, #64]
|
123 0068 216C ldr r1, [r4, #64]
|
||||||
124 006a 0B43 orrs r3, r3, r1
|
124 006a 0B43 orrs r3, r3, r1
|
||||||
125 006c C2F88C30 str r3, [r2, #140]
|
125 006c C2F88C30 str r3, [r2, #140]
|
||||||
ARM GAS /tmp/ccj9xBix.s page 6
|
ARM GAS /tmp/ccrobTL8.s page 6
|
||||||
|
|
||||||
|
|
||||||
160:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
160:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
@ -358,7 +358,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
183:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** assert_param(IS_RCC_RTCCLKSOURCE(PeriphClkInit->RTCClockSelection));
|
183:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** assert_param(IS_RCC_RTCCLKSOURCE(PeriphClkInit->RTCClockSelection));
|
||||||
184:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
184:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
185:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Enable Power Clock*/
|
185:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Enable Power Clock*/
|
||||||
ARM GAS /tmp/ccj9xBix.s page 7
|
ARM GAS /tmp/ccrobTL8.s page 7
|
||||||
|
|
||||||
|
|
||||||
186:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** __HAL_RCC_PWR_CLK_ENABLE();
|
186:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** __HAL_RCC_PWR_CLK_ENABLE();
|
||||||
@ -418,7 +418,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
158 .loc 1 238 3 discriminator 5 view .LVU49
|
158 .loc 1 238 3 discriminator 5 view .LVU49
|
||||||
159 .loc 1 238 21 is_stmt 0 discriminator 5 view .LVU50
|
159 .loc 1 238 21 is_stmt 0 discriminator 5 view .LVU50
|
||||||
160 0090 2368 ldr r3, [r4]
|
160 0090 2368 ldr r3, [r4]
|
||||||
ARM GAS /tmp/ccj9xBix.s page 8
|
ARM GAS /tmp/ccrobTL8.s page 8
|
||||||
|
|
||||||
|
|
||||||
161 .loc 1 238 5 discriminator 5 view .LVU51
|
161 .loc 1 238 5 discriminator 5 view .LVU51
|
||||||
@ -478,7 +478,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
195 00cc 2368 ldr r3, [r4]
|
195 00cc 2368 ldr r3, [r4]
|
||||||
196 .loc 1 258 5 view .LVU64
|
196 .loc 1 258 5 view .LVU64
|
||||||
197 00ce 13F4004F tst r3, #32768
|
197 00ce 13F4004F tst r3, #32768
|
||||||
ARM GAS /tmp/ccj9xBix.s page 9
|
ARM GAS /tmp/ccrobTL8.s page 9
|
||||||
|
|
||||||
|
|
||||||
198 00d2 08D0 beq .L19
|
198 00d2 08D0 beq .L19
|
||||||
@ -538,7 +538,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
229 .loc 1 281 5 is_stmt 1 view .LVU75
|
229 .loc 1 281 5 is_stmt 1 view .LVU75
|
||||||
282:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
282:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
283:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Configure the I2C4 clock source */
|
283:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Configure the I2C4 clock source */
|
||||||
ARM GAS /tmp/ccj9xBix.s page 10
|
ARM GAS /tmp/ccrobTL8.s page 10
|
||||||
|
|
||||||
|
|
||||||
284:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** __HAL_RCC_I2C4_CONFIG(PeriphClkInit->I2c4ClockSelection);
|
284:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** __HAL_RCC_I2C4_CONFIG(PeriphClkInit->I2c4ClockSelection);
|
||||||
@ -598,7 +598,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
263 0142 23F00C03 bic r3, r3, #12
|
263 0142 23F00C03 bic r3, r3, #12
|
||||||
264 0146 A16C ldr r1, [r4, #72]
|
264 0146 A16C ldr r1, [r4, #72]
|
||||||
265 0148 0B43 orrs r3, r3, r1
|
265 0148 0B43 orrs r3, r3, r1
|
||||||
ARM GAS /tmp/ccj9xBix.s page 11
|
ARM GAS /tmp/ccrobTL8.s page 11
|
||||||
|
|
||||||
|
|
||||||
266 014a C2F89030 str r3, [r2, #144]
|
266 014a C2F89030 str r3, [r2, #144]
|
||||||
@ -658,7 +658,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
327:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /*-------------------------------------- UART5 Configuration -----------------------------------*
|
327:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /*-------------------------------------- UART5 Configuration -----------------------------------*
|
||||||
328:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** if(((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_UART5) == RCC_PERIPHCLK_UART5)
|
328:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** if(((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_UART5) == RCC_PERIPHCLK_UART5)
|
||||||
298 .loc 1 328 3 view .LVU97
|
298 .loc 1 328 3 view .LVU97
|
||||||
ARM GAS /tmp/ccj9xBix.s page 12
|
ARM GAS /tmp/ccrobTL8.s page 12
|
||||||
|
|
||||||
|
|
||||||
299 .loc 1 328 21 is_stmt 0 view .LVU98
|
299 .loc 1 328 21 is_stmt 0 view .LVU98
|
||||||
@ -718,7 +718,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
333 01bc 08D0 beq .L28
|
333 01bc 08D0 beq .L28
|
||||||
349:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
349:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
350:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Check the parameters */
|
350:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Check the parameters */
|
||||||
ARM GAS /tmp/ccj9xBix.s page 13
|
ARM GAS /tmp/ccrobTL8.s page 13
|
||||||
|
|
||||||
|
|
||||||
351:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** assert_param(IS_RCC_UART7CLKSOURCE(PeriphClkInit->Uart7ClockSelection));
|
351:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** assert_param(IS_RCC_UART7CLKSOURCE(PeriphClkInit->Uart7ClockSelection));
|
||||||
@ -778,7 +778,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
374:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** __HAL_RCC_CEC_CONFIG(PeriphClkInit->CecClockSelection);
|
374:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** __HAL_RCC_CEC_CONFIG(PeriphClkInit->CecClockSelection);
|
||||||
365 .loc 1 374 5 view .LVU121
|
365 .loc 1 374 5 view .LVU121
|
||||||
366 01f2 3C4A ldr r2, .L87
|
366 01f2 3C4A ldr r2, .L87
|
||||||
ARM GAS /tmp/ccj9xBix.s page 14
|
ARM GAS /tmp/ccrobTL8.s page 14
|
||||||
|
|
||||||
|
|
||||||
367 01f4 D2F89030 ldr r3, [r2, #144]
|
367 01f4 D2F89030 ldr r3, [r2, #144]
|
||||||
@ -838,7 +838,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
400 022e 00D0 beq .L32
|
400 022e 00D0 beq .L32
|
||||||
396:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
396:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
397:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** pllsaiused = 1;
|
397:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** pllsaiused = 1;
|
||||||
ARM GAS /tmp/ccj9xBix.s page 15
|
ARM GAS /tmp/ccrobTL8.s page 15
|
||||||
|
|
||||||
|
|
||||||
401 .loc 1 397 16 view .LVU133
|
401 .loc 1 397 16 view .LVU133
|
||||||
@ -898,7 +898,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
420:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
420:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
421:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** #if defined (STM32F765xx) || defined (STM32F767xx) || defined (STM32F769xx) || defined (STM32F777xx
|
421:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** #if defined (STM32F765xx) || defined (STM32F767xx) || defined (STM32F769xx) || defined (STM32F777xx
|
||||||
422:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /*------------------------------------- SDMMC2 Configuration ------------------------------------
|
422:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /*------------------------------------- SDMMC2 Configuration ------------------------------------
|
||||||
ARM GAS /tmp/ccj9xBix.s page 16
|
ARM GAS /tmp/ccrobTL8.s page 16
|
||||||
|
|
||||||
|
|
||||||
423:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** if(((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SDMMC2) == RCC_PERIPHCLK_SDMMC2)
|
423:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** if(((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SDMMC2) == RCC_PERIPHCLK_SDMMC2)
|
||||||
@ -958,7 +958,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
466 .loc 1 443 5 view .LVU155
|
466 .loc 1 443 5 view .LVU155
|
||||||
467 02a0 13F0805F tst r3, #268435456
|
467 02a0 13F0805F tst r3, #268435456
|
||||||
468 02a4 09D0 beq .L37
|
468 02a4 09D0 beq .L37
|
||||||
ARM GAS /tmp/ccj9xBix.s page 17
|
ARM GAS /tmp/ccrobTL8.s page 17
|
||||||
|
|
||||||
|
|
||||||
444:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
444:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
@ -1018,7 +1018,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
502 02d6 034B ldr r3, .L87
|
502 02d6 034B ldr r3, .L87
|
||||||
503 02d8 1B68 ldr r3, [r3]
|
503 02d8 1B68 ldr r3, [r3]
|
||||||
504 .loc 1 464 10 view .LVU168
|
504 .loc 1 464 10 view .LVU168
|
||||||
ARM GAS /tmp/ccj9xBix.s page 18
|
ARM GAS /tmp/ccrobTL8.s page 18
|
||||||
|
|
||||||
|
|
||||||
505 02da 13F0006F tst r3, #134217728
|
505 02da 13F0006F tst r3, #134217728
|
||||||
@ -1078,7 +1078,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
548 0304 B9E6 b .L6
|
548 0304 B9E6 b .L6
|
||||||
549 .LVL20:
|
549 .LVL20:
|
||||||
550 .L77:
|
550 .L77:
|
||||||
ARM GAS /tmp/ccj9xBix.s page 19
|
ARM GAS /tmp/ccrobTL8.s page 19
|
||||||
|
|
||||||
|
|
||||||
183:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
183:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
@ -1138,7 +1138,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
589 0332 06D1 bne .L80
|
589 0332 06D1 bne .L80
|
||||||
197:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
197:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
590 .loc 1 197 7 is_stmt 1 view .LVU196
|
590 .loc 1 197 7 is_stmt 1 view .LVU196
|
||||||
ARM GAS /tmp/ccj9xBix.s page 20
|
ARM GAS /tmp/ccrobTL8.s page 20
|
||||||
|
|
||||||
|
|
||||||
197:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
197:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
@ -1198,7 +1198,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
629 .LVL27:
|
629 .LVL27:
|
||||||
212:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** __HAL_RCC_BACKUPRESET_RELEASE();
|
212:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** __HAL_RCC_BACKUPRESET_RELEASE();
|
||||||
630 .loc 1 212 7 is_stmt 1 view .LVU213
|
630 .loc 1 212 7 is_stmt 1 view .LVU213
|
||||||
ARM GAS /tmp/ccj9xBix.s page 21
|
ARM GAS /tmp/ccrobTL8.s page 21
|
||||||
|
|
||||||
|
|
||||||
631 035e 196F ldr r1, [r3, #112]
|
631 035e 196F ldr r1, [r3, #112]
|
||||||
@ -1258,7 +1258,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
673 039e FFF7FEFF bl HAL_GetTick
|
673 039e FFF7FEFF bl HAL_GetTick
|
||||||
674 .LVL30:
|
674 .LVL30:
|
||||||
222:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
222:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
ARM GAS /tmp/ccj9xBix.s page 22
|
ARM GAS /tmp/ccrobTL8.s page 22
|
||||||
|
|
||||||
|
|
||||||
675 .loc 1 222 21 view .LVU226
|
675 .loc 1 222 21 view .LVU226
|
||||||
@ -1318,7 +1318,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
717 .LVL35:
|
717 .LVL35:
|
||||||
718 .L79:
|
718 .L79:
|
||||||
470:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** }
|
470:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** }
|
||||||
ARM GAS /tmp/ccj9xBix.s page 23
|
ARM GAS /tmp/ccrobTL8.s page 23
|
||||||
|
|
||||||
|
|
||||||
471:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** }
|
471:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** }
|
||||||
@ -1378,7 +1378,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
490:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
490:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
491:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /*----------------- In Case of PLLI2S is selected as source clock for SAI -------------------*/
|
491:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /*----------------- In Case of PLLI2S is selected as source clock for SAI -------------------*/
|
||||||
492:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** if(((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SAI1) == RCC_PERIPHCLK_SAI1) && (Pe
|
492:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** if(((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SAI1) == RCC_PERIPHCLK_SAI1) && (Pe
|
||||||
ARM GAS /tmp/ccj9xBix.s page 24
|
ARM GAS /tmp/ccrobTL8.s page 24
|
||||||
|
|
||||||
|
|
||||||
754 .loc 1 492 5 is_stmt 1 view .LVU253
|
754 .loc 1 492 5 is_stmt 1 view .LVU253
|
||||||
@ -1438,7 +1438,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
793 043a 43EA0063 orr r3, r3, r0, lsl #24
|
793 043a 43EA0063 orr r3, r3, r0, lsl #24
|
||||||
794 043e 01F0E041 and r1, r1, #1879048192
|
794 043e 01F0E041 and r1, r1, #1879048192
|
||||||
795 .LVL43:
|
795 .LVL43:
|
||||||
ARM GAS /tmp/ccj9xBix.s page 25
|
ARM GAS /tmp/ccrobTL8.s page 25
|
||||||
|
|
||||||
|
|
||||||
796 .loc 1 507 7 view .LVU269
|
796 .loc 1 507 7 view .LVU269
|
||||||
@ -1498,7 +1498,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
832 .loc 1 525 7 view .LVU281
|
832 .loc 1 525 7 view .LVU281
|
||||||
833 047a 0343 orrs r3, r3, r0
|
833 047a 0343 orrs r3, r3, r0
|
||||||
834 047c 01F0E041 and r1, r1, #1879048192
|
834 047c 01F0E041 and r1, r1, #1879048192
|
||||||
ARM GAS /tmp/ccj9xBix.s page 26
|
ARM GAS /tmp/ccrobTL8.s page 26
|
||||||
|
|
||||||
|
|
||||||
835 .LVL48:
|
835 .LVL48:
|
||||||
@ -1558,7 +1558,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
868 04b4 FFF7FEFF bl HAL_GetTick
|
868 04b4 FFF7FEFF bl HAL_GetTick
|
||||||
869 .LVL49:
|
869 .LVL49:
|
||||||
870 04b8 0646 mov r6, r0
|
870 04b8 0646 mov r6, r0
|
||||||
ARM GAS /tmp/ccj9xBix.s page 27
|
ARM GAS /tmp/ccrobTL8.s page 27
|
||||||
|
|
||||||
|
|
||||||
871 .LVL50:
|
871 .LVL50:
|
||||||
@ -1618,7 +1618,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
573:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
573:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
574:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* return in case of Timeout detected */
|
574:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* return in case of Timeout detected */
|
||||||
575:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** return HAL_TIMEOUT;
|
575:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** return HAL_TIMEOUT;
|
||||||
ARM GAS /tmp/ccj9xBix.s page 28
|
ARM GAS /tmp/ccrobTL8.s page 28
|
||||||
|
|
||||||
|
|
||||||
576:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** }
|
576:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** }
|
||||||
@ -1678,7 +1678,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
630:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* PLLSAI_VCO Input = PLL_SOURCE/PLLM */
|
630:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* PLLSAI_VCO Input = PLL_SOURCE/PLLM */
|
||||||
631:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* PLLSAI_VCO Output = PLLSAI_VCO Input * PLLSAIN */
|
631:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* PLLSAI_VCO Output = PLLSAI_VCO Input * PLLSAIN */
|
||||||
632:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* LTDC_CLK(first level) = PLLSAI_VCO Output/PLLSAIR */
|
632:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* LTDC_CLK(first level) = PLLSAI_VCO Output/PLLSAIR */
|
||||||
ARM GAS /tmp/ccj9xBix.s page 29
|
ARM GAS /tmp/ccrobTL8.s page 29
|
||||||
|
|
||||||
|
|
||||||
633:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** __HAL_RCC_PLLSAI_CONFIG(PeriphClkInit->PLLSAI.PLLSAIN , tmpreg1, tmpreg0, PeriphClkInit->PLLS
|
633:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** __HAL_RCC_PLLSAI_CONFIG(PeriphClkInit->PLLSAI.PLLSAIN , tmpreg1, tmpreg0, PeriphClkInit->PLLS
|
||||||
@ -1738,7 +1738,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
570:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
570:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
925 .loc 1 570 5 is_stmt 1 view .LVU309
|
925 .loc 1 570 5 is_stmt 1 view .LVU309
|
||||||
926 .L50:
|
926 .L50:
|
||||||
ARM GAS /tmp/ccj9xBix.s page 30
|
ARM GAS /tmp/ccrobTL8.s page 30
|
||||||
|
|
||||||
|
|
||||||
570:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
570:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
@ -1798,7 +1798,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
966 051c 13F4801F tst r3, #1048576
|
966 051c 13F4801F tst r3, #1048576
|
||||||
967 0520 1DD0 beq .L54
|
967 0520 1DD0 beq .L54
|
||||||
584:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
584:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
ARM GAS /tmp/ccj9xBix.s page 31
|
ARM GAS /tmp/ccrobTL8.s page 31
|
||||||
|
|
||||||
|
|
||||||
968 .loc 1 584 111 view .LVU325
|
968 .loc 1 584 111 view .LVU325
|
||||||
@ -1858,7 +1858,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1008 .loc 1 605 7 view .LVU339
|
1008 .loc 1 605 7 view .LVU339
|
||||||
1009 0560 13F4001F tst r3, #2097152
|
1009 0560 13F4001F tst r3, #2097152
|
||||||
1010 0564 03D0 beq .L55
|
1010 0564 03D0 beq .L55
|
||||||
ARM GAS /tmp/ccj9xBix.s page 32
|
ARM GAS /tmp/ccrobTL8.s page 32
|
||||||
|
|
||||||
|
|
||||||
605:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
605:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
@ -1918,7 +1918,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1050 059e 23F44033 bic r3, r3, #196608
|
1050 059e 23F44033 bic r3, r3, #196608
|
||||||
1051 05a2 E16A ldr r1, [r4, #44]
|
1051 05a2 E16A ldr r1, [r4, #44]
|
||||||
1052 05a4 0B43 orrs r3, r3, r1
|
1052 05a4 0B43 orrs r3, r3, r1
|
||||||
ARM GAS /tmp/ccj9xBix.s page 33
|
ARM GAS /tmp/ccrobTL8.s page 33
|
||||||
|
|
||||||
|
|
||||||
1053 05a6 C2F88C30 str r3, [r2, #140]
|
1053 05a6 C2F88C30 str r3, [r2, #140]
|
||||||
@ -1978,7 +1978,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1092 05d2 0A4A ldr r2, .L92
|
1092 05d2 0A4A ldr r2, .L92
|
||||||
1093 05d4 D2F88800 ldr r0, [r2, #136]
|
1093 05d4 D2F88800 ldr r0, [r2, #136]
|
||||||
1094 .LVL71:
|
1094 .LVL71:
|
||||||
ARM GAS /tmp/ccj9xBix.s page 34
|
ARM GAS /tmp/ccrobTL8.s page 34
|
||||||
|
|
||||||
|
|
||||||
611:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
611:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
@ -2038,7 +2038,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
663:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** * @retval None
|
663:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** * @retval None
|
||||||
664:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** */
|
664:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** */
|
||||||
665:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** void HAL_RCCEx_GetPeriphCLKConfig(RCC_PeriphCLKInitTypeDef *PeriphClkInit)
|
665:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** void HAL_RCCEx_GetPeriphCLKConfig(RCC_PeriphCLKInitTypeDef *PeriphClkInit)
|
||||||
ARM GAS /tmp/ccj9xBix.s page 35
|
ARM GAS /tmp/ccrobTL8.s page 35
|
||||||
|
|
||||||
|
|
||||||
666:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
666:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
@ -2098,7 +2098,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1159 0010 D3F88420 ldr r2, [r3, #132]
|
1159 0010 D3F88420 ldr r2, [r3, #132]
|
||||||
1160 .loc 1 699 35 view .LVU387
|
1160 .loc 1 699 35 view .LVU387
|
||||||
1161 0014 C2F30142 ubfx r2, r2, #16, #2
|
1161 0014 C2F30142 ubfx r2, r2, #16, #2
|
||||||
ARM GAS /tmp/ccj9xBix.s page 36
|
ARM GAS /tmp/ccrobTL8.s page 36
|
||||||
|
|
||||||
|
|
||||||
1162 .loc 1 699 33 view .LVU388
|
1162 .loc 1 699 33 view .LVU388
|
||||||
@ -2158,7 +2158,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
710:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** PeriphClkInit->PLLI2SDivQ = (uint32_t)((RCC->DCKCFGR1 & RCC_DCKCFGR1_PLLI2SDIVQ) >> RCC_DCKCFGR1_
|
710:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** PeriphClkInit->PLLI2SDivQ = (uint32_t)((RCC->DCKCFGR1 & RCC_DCKCFGR1_PLLI2SDIVQ) >> RCC_DCKCFGR1_
|
||||||
1206 .loc 1 710 3 is_stmt 1 view .LVU413
|
1206 .loc 1 710 3 is_stmt 1 view .LVU413
|
||||||
1207 .loc 1 710 46 is_stmt 0 view .LVU414
|
1207 .loc 1 710 46 is_stmt 0 view .LVU414
|
||||||
ARM GAS /tmp/ccj9xBix.s page 37
|
ARM GAS /tmp/ccrobTL8.s page 37
|
||||||
|
|
||||||
|
|
||||||
1208 0056 D3F88C20 ldr r2, [r3, #140]
|
1208 0056 D3F88C20 ldr r2, [r3, #140]
|
||||||
@ -2218,7 +2218,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1248 0094 02F44032 and r2, r2, #196608
|
1248 0094 02F44032 and r2, r2, #196608
|
||||||
1249 .loc 1 724 37 view .LVU436
|
1249 .loc 1 724 37 view .LVU436
|
||||||
1250 0098 4266 str r2, [r0, #100]
|
1250 0098 4266 str r2, [r0, #100]
|
||||||
ARM GAS /tmp/ccj9xBix.s page 38
|
ARM GAS /tmp/ccrobTL8.s page 38
|
||||||
|
|
||||||
|
|
||||||
725:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
725:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
@ -2278,7 +2278,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
743:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
743:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
744:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Get the UART4 clock configuration ------------------------------------------*/
|
744:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Get the UART4 clock configuration ------------------------------------------*/
|
||||||
745:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** PeriphClkInit->Uart4ClockSelection = __HAL_RCC_GET_UART4_SOURCE();
|
745:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** PeriphClkInit->Uart4ClockSelection = __HAL_RCC_GET_UART4_SOURCE();
|
||||||
ARM GAS /tmp/ccj9xBix.s page 39
|
ARM GAS /tmp/ccrobTL8.s page 39
|
||||||
|
|
||||||
|
|
||||||
1287 .loc 1 745 3 is_stmt 1 view .LVU455
|
1287 .loc 1 745 3 is_stmt 1 view .LVU455
|
||||||
@ -2338,7 +2338,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1323 .loc 1 763 3 is_stmt 1 view .LVU473
|
1323 .loc 1 763 3 is_stmt 1 view .LVU473
|
||||||
1324 .loc 1 763 38 is_stmt 0 view .LVU474
|
1324 .loc 1 763 38 is_stmt 0 view .LVU474
|
||||||
1325 0112 D3F89020 ldr r2, [r3, #144]
|
1325 0112 D3F89020 ldr r2, [r3, #144]
|
||||||
ARM GAS /tmp/ccj9xBix.s page 40
|
ARM GAS /tmp/ccrobTL8.s page 40
|
||||||
|
|
||||||
|
|
||||||
1326 0116 02F08062 and r2, r2, #67108864
|
1326 0116 02F08062 and r2, r2, #67108864
|
||||||
@ -2398,7 +2398,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1360 .loc 1 783 17 is_stmt 0 view .LVU492
|
1360 .loc 1 783 17 is_stmt 0 view .LVU492
|
||||||
1361 0156 9968 ldr r1, [r3, #8]
|
1361 0156 9968 ldr r1, [r3, #8]
|
||||||
1362 .loc 1 783 11 view .LVU493
|
1362 .loc 1 783 11 view .LVU493
|
||||||
ARM GAS /tmp/ccj9xBix.s page 41
|
ARM GAS /tmp/ccrobTL8.s page 41
|
||||||
|
|
||||||
|
|
||||||
1363 0158 01F4F811 and r1, r1, #2031616
|
1363 0158 01F4F811 and r1, r1, #2031616
|
||||||
@ -2458,7 +2458,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1406 .fpu fpv5-d16
|
1406 .fpu fpv5-d16
|
||||||
1408 HAL_RCCEx_GetPeriphCLKFreq:
|
1408 HAL_RCCEx_GetPeriphCLKFreq:
|
||||||
1409 .LVL79:
|
1409 .LVL79:
|
||||||
ARM GAS /tmp/ccj9xBix.s page 42
|
ARM GAS /tmp/ccrobTL8.s page 42
|
||||||
|
|
||||||
|
|
||||||
1410 .LFB143:
|
1410 .LFB143:
|
||||||
@ -2518,7 +2518,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
849:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
849:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
850:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** plli2sused = 1;
|
850:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** plli2sused = 1;
|
||||||
851:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** }
|
851:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** }
|
||||||
ARM GAS /tmp/ccj9xBix.s page 43
|
ARM GAS /tmp/ccrobTL8.s page 43
|
||||||
|
|
||||||
|
|
||||||
852:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Enable the PLLSAI when it's used as clock source for SAI */
|
852:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Enable the PLLSAI when it's used as clock source for SAI */
|
||||||
@ -2578,7 +2578,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
906:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
906:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
907:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** if((tmpreg0 != 0x00000000U) && (tmpreg0 != (PeriphClkInit->RTCClockSelection & RCC_BDCR_RTCSEL)
|
907:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** if((tmpreg0 != 0x00000000U) && (tmpreg0 != (PeriphClkInit->RTCClockSelection & RCC_BDCR_RTCSEL)
|
||||||
908:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
908:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
ARM GAS /tmp/ccj9xBix.s page 44
|
ARM GAS /tmp/ccrobTL8.s page 44
|
||||||
|
|
||||||
|
|
||||||
909:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Store the content of BDCR register before the reset of Backup Domain */
|
909:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Store the content of BDCR register before the reset of Backup Domain */
|
||||||
@ -2638,7 +2638,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
963:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
963:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
964:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Configure the I2C2 clock source */
|
964:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Configure the I2C2 clock source */
|
||||||
965:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** __HAL_RCC_I2C2_CONFIG(PeriphClkInit->I2c2ClockSelection);
|
965:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** __HAL_RCC_I2C2_CONFIG(PeriphClkInit->I2c2ClockSelection);
|
||||||
ARM GAS /tmp/ccj9xBix.s page 45
|
ARM GAS /tmp/ccrobTL8.s page 45
|
||||||
|
|
||||||
|
|
||||||
966:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** }
|
966:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** }
|
||||||
@ -2698,7 +2698,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1020:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
1020:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
1021:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Check the parameters */
|
1021:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Check the parameters */
|
||||||
1022:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** assert_param(IS_RCC_UART5CLKSOURCE(PeriphClkInit->Uart5ClockSelection));
|
1022:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** assert_param(IS_RCC_UART5CLKSOURCE(PeriphClkInit->Uart5ClockSelection));
|
||||||
ARM GAS /tmp/ccj9xBix.s page 46
|
ARM GAS /tmp/ccrobTL8.s page 46
|
||||||
|
|
||||||
|
|
||||||
1023:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
1023:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
@ -2758,7 +2758,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1077:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Check the parameters */
|
1077:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Check the parameters */
|
||||||
1078:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** assert_param(IS_RCC_LPTIM1CLK(PeriphClkInit->Lptim1ClockSelection));
|
1078:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** assert_param(IS_RCC_LPTIM1CLK(PeriphClkInit->Lptim1ClockSelection));
|
||||||
1079:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
1079:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
ARM GAS /tmp/ccj9xBix.s page 47
|
ARM GAS /tmp/ccrobTL8.s page 47
|
||||||
|
|
||||||
|
|
||||||
1080:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Configure the LTPIM1 clock source */
|
1080:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Configure the LTPIM1 clock source */
|
||||||
@ -2818,7 +2818,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1134:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** tmpreg0 = ((RCC->PLLI2SCFGR & RCC_PLLI2SCFGR_PLLI2SQ) >> RCC_PLLI2SCFGR_PLLI2SQ_Pos);
|
1134:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** tmpreg0 = ((RCC->PLLI2SCFGR & RCC_PLLI2SCFGR_PLLI2SQ) >> RCC_PLLI2SCFGR_PLLI2SQ_Pos);
|
||||||
1135:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Configure the PLLI2S division factors */
|
1135:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Configure the PLLI2S division factors */
|
||||||
1136:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* PLLI2S_VCO = f(VCO clock) = f(PLLI2S clock input) x (PLLI2SN/PLLM) */
|
1136:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* PLLI2S_VCO = f(VCO clock) = f(PLLI2S clock input) x (PLLI2SN/PLLM) */
|
||||||
ARM GAS /tmp/ccj9xBix.s page 48
|
ARM GAS /tmp/ccrobTL8.s page 48
|
||||||
|
|
||||||
|
|
||||||
1137:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* I2SCLK = f(PLLI2S clock output) = f(VCO clock) / PLLI2SR */
|
1137:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* I2SCLK = f(PLLI2S clock output) = f(VCO clock) / PLLI2SR */
|
||||||
@ -2878,7 +2878,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1191:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /*-------------------------------------- PLLSAI Configuration ---------------------------------*/
|
1191:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /*-------------------------------------- PLLSAI Configuration ---------------------------------*/
|
||||||
1192:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* PLLSAI is configured when a peripheral will use it as source clock : SAI1, SAI2, LTDC or CK48
|
1192:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* PLLSAI is configured when a peripheral will use it as source clock : SAI1, SAI2, LTDC or CK48
|
||||||
1193:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** if(pllsaiused == 1)
|
1193:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** if(pllsaiused == 1)
|
||||||
ARM GAS /tmp/ccj9xBix.s page 49
|
ARM GAS /tmp/ccrobTL8.s page 49
|
||||||
|
|
||||||
|
|
||||||
1194:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
1194:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
@ -2938,7 +2938,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1248:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
1248:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
1249:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Enable PLLSAI Clock */
|
1249:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Enable PLLSAI Clock */
|
||||||
1250:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** __HAL_RCC_PLLSAI_ENABLE();
|
1250:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** __HAL_RCC_PLLSAI_ENABLE();
|
||||||
ARM GAS /tmp/ccj9xBix.s page 50
|
ARM GAS /tmp/ccrobTL8.s page 50
|
||||||
|
|
||||||
|
|
||||||
1251:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
1251:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
@ -2998,7 +2998,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1305:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** PeriphClkInit->Sai1ClockSelection = __HAL_RCC_GET_SAI1_SOURCE();
|
1305:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** PeriphClkInit->Sai1ClockSelection = __HAL_RCC_GET_SAI1_SOURCE();
|
||||||
1306:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
1306:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
1307:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Get the SAI2 clock configuration ----------------------------------------------*/
|
1307:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Get the SAI2 clock configuration ----------------------------------------------*/
|
||||||
ARM GAS /tmp/ccj9xBix.s page 51
|
ARM GAS /tmp/ccrobTL8.s page 51
|
||||||
|
|
||||||
|
|
||||||
1308:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** PeriphClkInit->Sai2ClockSelection = __HAL_RCC_GET_SAI2_SOURCE();
|
1308:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** PeriphClkInit->Sai2ClockSelection = __HAL_RCC_GET_SAI2_SOURCE();
|
||||||
@ -3058,7 +3058,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1362:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Get the TIM Prescaler configuration --------------------------------------------*/
|
1362:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Get the TIM Prescaler configuration --------------------------------------------*/
|
||||||
1363:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** if ((RCC->DCKCFGR1 & RCC_DCKCFGR1_TIMPRE) == RESET)
|
1363:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** if ((RCC->DCKCFGR1 & RCC_DCKCFGR1_TIMPRE) == RESET)
|
||||||
1364:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
1364:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
ARM GAS /tmp/ccj9xBix.s page 52
|
ARM GAS /tmp/ccrobTL8.s page 52
|
||||||
|
|
||||||
|
|
||||||
1365:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** PeriphClkInit->TIMPresSelection = RCC_TIMPRES_DESACTIVATED;
|
1365:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** PeriphClkInit->TIMPresSelection = RCC_TIMPRES_DESACTIVATED;
|
||||||
@ -3118,7 +3118,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1398:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
1398:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
1399:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** case 0: /* PLLSAI is the clock source for SAI1 */
|
1399:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** case 0: /* PLLSAI is the clock source for SAI1 */
|
||||||
1400:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
1400:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
ARM GAS /tmp/ccj9xBix.s page 53
|
ARM GAS /tmp/ccrobTL8.s page 53
|
||||||
|
|
||||||
|
|
||||||
1401:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Configure the PLLSAI division factor */
|
1401:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Configure the PLLSAI division factor */
|
||||||
@ -3178,7 +3178,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1455:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
1455:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
1456:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** if((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLSOURCE_HSI)
|
1456:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** if((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLSOURCE_HSI)
|
||||||
1457:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
1457:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
ARM GAS /tmp/ccj9xBix.s page 54
|
ARM GAS /tmp/ccrobTL8.s page 54
|
||||||
|
|
||||||
|
|
||||||
1458:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* In Case the main PLL Source is HSI */
|
1458:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* In Case the main PLL Source is HSI */
|
||||||
@ -3238,7 +3238,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1506:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** case RCC_DCKCFGR1_SAI2SEL_0: /* PLLI2S is the clock source for SAI2 */
|
1506:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** case RCC_DCKCFGR1_SAI2SEL_0: /* PLLI2S is the clock source for SAI2 */
|
||||||
1507:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
1507:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
1508:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Configure the PLLI2S division factor */
|
1508:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Configure the PLLI2S division factor */
|
||||||
ARM GAS /tmp/ccj9xBix.s page 55
|
ARM GAS /tmp/ccrobTL8.s page 55
|
||||||
|
|
||||||
|
|
||||||
1509:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* PLLI2S_VCO Input = PLL_SOURCE/PLLM */
|
1509:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* PLLI2S_VCO Input = PLL_SOURCE/PLLM */
|
||||||
@ -3298,7 +3298,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1439 .LVL83:
|
1439 .LVL83:
|
||||||
1440 .L123:
|
1440 .L123:
|
||||||
1395:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** saiclocksource &= RCC_DCKCFGR1_SAI1SEL;
|
1395:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** saiclocksource &= RCC_DCKCFGR1_SAI1SEL;
|
||||||
ARM GAS /tmp/ccj9xBix.s page 56
|
ARM GAS /tmp/ccrobTL8.s page 56
|
||||||
|
|
||||||
|
|
||||||
1441 .loc 1 1395 5 is_stmt 1 view .LVU519
|
1441 .loc 1 1395 5 is_stmt 1 view .LVU519
|
||||||
@ -3358,7 +3358,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1481 0046 D2F88410 ldr r1, [r2, #132]
|
1481 0046 D2F88410 ldr r1, [r2, #132]
|
||||||
1440:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** frequency = (vcoinput * ((RCC->PLLI2SCFGR & RCC_PLLI2SCFGR_PLLI2SN) >> 6))/(tmpreg);
|
1440:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** frequency = (vcoinput * ((RCC->PLLI2SCFGR & RCC_PLLI2SCFGR_PLLI2SN) >> 6))/(tmpreg);
|
||||||
1482 .loc 1 1440 16 view .LVU534
|
1482 .loc 1 1440 16 view .LVU534
|
||||||
ARM GAS /tmp/ccj9xBix.s page 57
|
ARM GAS /tmp/ccrobTL8.s page 57
|
||||||
|
|
||||||
|
|
||||||
1483 004a C1F30361 ubfx r1, r1, #24, #4
|
1483 004a C1F30361 ubfx r1, r1, #24, #4
|
||||||
@ -3418,7 +3418,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1521 .loc 1 1456 9 is_stmt 1 view .LVU550
|
1521 .loc 1 1456 9 is_stmt 1 view .LVU550
|
||||||
1456:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
1456:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
1522 .loc 1 1456 16 is_stmt 0 view .LVU551
|
1522 .loc 1 1456 16 is_stmt 0 view .LVU551
|
||||||
ARM GAS /tmp/ccj9xBix.s page 58
|
ARM GAS /tmp/ccrobTL8.s page 58
|
||||||
|
|
||||||
|
|
||||||
1523 0078 564A ldr r2, .L129
|
1523 0078 564A ldr r2, .L129
|
||||||
@ -3478,7 +3478,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1563 .LVL103:
|
1563 .LVL103:
|
||||||
1564 .L106:
|
1564 .L106:
|
||||||
1415:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** frequency = (vcoinput * ((RCC->PLLSAICFGR & RCC_PLLSAICFGR_PLLSAIN) >> 6))/(tmpreg);
|
1415:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** frequency = (vcoinput * ((RCC->PLLSAICFGR & RCC_PLLSAICFGR_PLLSAIN) >> 6))/(tmpreg);
|
||||||
ARM GAS /tmp/ccj9xBix.s page 59
|
ARM GAS /tmp/ccrobTL8.s page 59
|
||||||
|
|
||||||
|
|
||||||
1565 .loc 1 1415 9 is_stmt 1 view .LVU566
|
1565 .loc 1 1415 9 is_stmt 1 view .LVU566
|
||||||
@ -3538,7 +3538,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1411:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** }
|
1411:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** }
|
||||||
1603 .loc 1 1411 36 view .LVU583
|
1603 .loc 1 1411 36 view .LVU583
|
||||||
1604 00d0 00F03F0C and ip, r0, #63
|
1604 00d0 00F03F0C and ip, r0, #63
|
||||||
ARM GAS /tmp/ccj9xBix.s page 60
|
ARM GAS /tmp/ccrobTL8.s page 60
|
||||||
|
|
||||||
|
|
||||||
1411:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** }
|
1411:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** }
|
||||||
@ -3598,7 +3598,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1478:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** saiclocksource &= RCC_DCKCFGR1_SAI2SEL;
|
1478:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** saiclocksource &= RCC_DCKCFGR1_SAI2SEL;
|
||||||
1646 .loc 1 1478 20 view .LVU597
|
1646 .loc 1 1478 20 view .LVU597
|
||||||
1647 00f6 D3F88C30 ldr r3, [r3, #140]
|
1647 00f6 D3F88C30 ldr r3, [r3, #140]
|
||||||
ARM GAS /tmp/ccj9xBix.s page 61
|
ARM GAS /tmp/ccrobTL8.s page 61
|
||||||
|
|
||||||
|
|
||||||
1648 .LVL120:
|
1648 .LVL120:
|
||||||
@ -3658,7 +3658,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1687 012c C2F30362 ubfx r2, r2, #24, #4
|
1687 012c C2F30362 ubfx r2, r2, #24, #4
|
||||||
1688 .LVL125:
|
1688 .LVL125:
|
||||||
1524:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
1524:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
ARM GAS /tmp/ccj9xBix.s page 62
|
ARM GAS /tmp/ccrobTL8.s page 62
|
||||||
|
|
||||||
|
|
||||||
1689 .loc 1 1524 9 is_stmt 1 view .LVU613
|
1689 .loc 1 1524 9 is_stmt 1 view .LVU613
|
||||||
@ -3718,7 +3718,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1539:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
1539:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
1727 .loc 1 1539 11 view .LVU630
|
1727 .loc 1 1539 11 view .LVU630
|
||||||
1728 015c 13F4800F tst r3, #4194304
|
1728 015c 13F4800F tst r3, #4194304
|
||||||
ARM GAS /tmp/ccj9xBix.s page 63
|
ARM GAS /tmp/ccrobTL8.s page 63
|
||||||
|
|
||||||
|
|
||||||
1729 0160 35D1 bne .L122
|
1729 0160 35D1 bne .L122
|
||||||
@ -3778,7 +3778,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1768 .LVL136:
|
1768 .LVL136:
|
||||||
1499:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
1499:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
1769 .loc 1 1499 9 is_stmt 1 view .LVU646
|
1769 .loc 1 1499 9 is_stmt 1 view .LVU646
|
||||||
ARM GAS /tmp/ccj9xBix.s page 64
|
ARM GAS /tmp/ccrobTL8.s page 64
|
||||||
|
|
||||||
|
|
||||||
1499:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
1499:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
@ -3838,7 +3838,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1807 .loc 1 1494 20 view .LVU663
|
1807 .loc 1 1494 20 view .LVU663
|
||||||
1808 01b8 E2E7 b .L115
|
1808 01b8 E2E7 b .L115
|
||||||
1809 .LVL143:
|
1809 .LVL143:
|
||||||
ARM GAS /tmp/ccj9xBix.s page 65
|
ARM GAS /tmp/ccrobTL8.s page 65
|
||||||
|
|
||||||
|
|
||||||
1810 .L116:
|
1810 .L116:
|
||||||
@ -3898,7 +3898,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1854 .thumb
|
1854 .thumb
|
||||||
1855 .thumb_func
|
1855 .thumb_func
|
||||||
1856 .fpu fpv5-d16
|
1856 .fpu fpv5-d16
|
||||||
ARM GAS /tmp/ccj9xBix.s page 66
|
ARM GAS /tmp/ccrobTL8.s page 66
|
||||||
|
|
||||||
|
|
||||||
1858 HAL_RCCEx_EnablePLLI2S:
|
1858 HAL_RCCEx_EnablePLLI2S:
|
||||||
@ -3958,7 +3958,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1595:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** assert_param(IS_RCC_PLLI2SP_VALUE(PLLI2SInit->PLLI2SP));
|
1595:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** assert_param(IS_RCC_PLLI2SP_VALUE(PLLI2SInit->PLLI2SP));
|
||||||
1878 .loc 1 1595 3 view .LVU681
|
1878 .loc 1 1595 3 view .LVU681
|
||||||
1596:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** #endif /* RCC_PLLI2SCFGR_PLLI2SP */
|
1596:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** #endif /* RCC_PLLI2SCFGR_PLLI2SP */
|
||||||
ARM GAS /tmp/ccj9xBix.s page 67
|
ARM GAS /tmp/ccrobTL8.s page 67
|
||||||
|
|
||||||
|
|
||||||
1597:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
1597:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
@ -4018,7 +4018,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1618:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** #else
|
1618:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** #else
|
||||||
1619:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* PLLI2S_VCO = f(VCO clock) = f(PLLI2S clock input) * PLLI2SN */
|
1619:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* PLLI2S_VCO = f(VCO clock) = f(PLLI2S clock input) * PLLI2SN */
|
||||||
1620:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* I2SPCLK = PLLI2S_VCO / PLLI2SP */
|
1620:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* I2SPCLK = PLLI2S_VCO / PLLI2SP */
|
||||||
ARM GAS /tmp/ccj9xBix.s page 68
|
ARM GAS /tmp/ccrobTL8.s page 68
|
||||||
|
|
||||||
|
|
||||||
1621:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* I2SQCLK = PLLI2S_VCO / PLLI2SQ */
|
1621:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* I2SQCLK = PLLI2S_VCO / PLLI2SQ */
|
||||||
@ -4078,7 +4078,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1939 .loc 1 1631 8 view .LVU701
|
1939 .loc 1 1631 8 view .LVU701
|
||||||
1631:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
1631:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
1940 .loc 1 1631 9 is_stmt 0 view .LVU702
|
1940 .loc 1 1631 9 is_stmt 0 view .LVU702
|
||||||
ARM GAS /tmp/ccj9xBix.s page 69
|
ARM GAS /tmp/ccrobTL8.s page 69
|
||||||
|
|
||||||
|
|
||||||
1941 0056 074B ldr r3, .L142
|
1941 0056 074B ldr r3, .L142
|
||||||
@ -4138,7 +4138,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1983 0000 10B5 push {r4, lr}
|
1983 0000 10B5 push {r4, lr}
|
||||||
1984 .LCFI5:
|
1984 .LCFI5:
|
||||||
1985 .cfi_def_cfa_offset 8
|
1985 .cfi_def_cfa_offset 8
|
||||||
ARM GAS /tmp/ccj9xBix.s page 70
|
ARM GAS /tmp/ccrobTL8.s page 70
|
||||||
|
|
||||||
|
|
||||||
1986 .cfi_offset 4, -8
|
1986 .cfi_offset 4, -8
|
||||||
@ -4198,7 +4198,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
2023 002a 0020 movs r0, #0
|
2023 002a 0020 movs r0, #0
|
||||||
2024 .L146:
|
2024 .L146:
|
||||||
1666:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** }
|
1666:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** }
|
||||||
ARM GAS /tmp/ccj9xBix.s page 71
|
ARM GAS /tmp/ccrobTL8.s page 71
|
||||||
|
|
||||||
|
|
||||||
2025 .loc 1 1666 1 view .LVU725
|
2025 .loc 1 1666 1 view .LVU725
|
||||||
@ -4258,7 +4258,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
2064 .loc 1 1683 3 view .LVU733
|
2064 .loc 1 1683 3 view .LVU733
|
||||||
1684:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** #endif /* RCC_PLLSAICFGR_PLLSAIR */
|
1684:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** #endif /* RCC_PLLSAICFGR_PLLSAIR */
|
||||||
1685:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
1685:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c ****
|
||||||
ARM GAS /tmp/ccj9xBix.s page 72
|
ARM GAS /tmp/ccrobTL8.s page 72
|
||||||
|
|
||||||
|
|
||||||
1686:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Disable the PLLSAI */
|
1686:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* Disable the PLLSAI */
|
||||||
@ -4318,7 +4318,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
1707:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* PLLSAI_VCO = f(VCO clock) = f(PLLSAI clock input) * PLLSAIN */
|
1707:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* PLLSAI_VCO = f(VCO clock) = f(PLLSAI clock input) * PLLSAIN */
|
||||||
1708:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* SAIPCLK = PLLSAI_VCO / PLLSAIP */
|
1708:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* SAIPCLK = PLLSAI_VCO / PLLSAIP */
|
||||||
1709:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* SAIQCLK = PLLSAI_VCO / PLLSAIQ */
|
1709:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* SAIQCLK = PLLSAI_VCO / PLLSAIQ */
|
||||||
ARM GAS /tmp/ccj9xBix.s page 73
|
ARM GAS /tmp/ccrobTL8.s page 73
|
||||||
|
|
||||||
|
|
||||||
1710:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* SAIRCLK = PLLSAI_VCO / PLLSAIR */
|
1710:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** /* SAIRCLK = PLLSAI_VCO / PLLSAIR */
|
||||||
@ -4378,7 +4378,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
2125 .loc 1 1720 8 view .LVU753
|
2125 .loc 1 1720 8 view .LVU753
|
||||||
1720:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
1720:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** {
|
||||||
2126 .loc 1 1720 9 is_stmt 0 view .LVU754
|
2126 .loc 1 1720 9 is_stmt 0 view .LVU754
|
||||||
ARM GAS /tmp/ccj9xBix.s page 74
|
ARM GAS /tmp/ccrobTL8.s page 74
|
||||||
|
|
||||||
|
|
||||||
2127 0056 074B ldr r3, .L164
|
2127 0056 074B ldr r3, .L164
|
||||||
@ -4438,7 +4438,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
2169 0000 10B5 push {r4, lr}
|
2169 0000 10B5 push {r4, lr}
|
||||||
2170 .LCFI7:
|
2170 .LCFI7:
|
||||||
2171 .cfi_def_cfa_offset 8
|
2171 .cfi_def_cfa_offset 8
|
||||||
ARM GAS /tmp/ccj9xBix.s page 75
|
ARM GAS /tmp/ccrobTL8.s page 75
|
||||||
|
|
||||||
|
|
||||||
2172 .cfi_offset 4, -8
|
2172 .cfi_offset 4, -8
|
||||||
@ -4498,7 +4498,7 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
2209 002a 0020 movs r0, #0
|
2209 002a 0020 movs r0, #0
|
||||||
2210 .L168:
|
2210 .L168:
|
||||||
1755:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** }
|
1755:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c **** }
|
||||||
ARM GAS /tmp/ccj9xBix.s page 76
|
ARM GAS /tmp/ccrobTL8.s page 76
|
||||||
|
|
||||||
|
|
||||||
2211 .loc 1 1755 1 view .LVU777
|
2211 .loc 1 1755 1 view .LVU777
|
||||||
@ -4519,36 +4519,36 @@ ARM GAS /tmp/ccj9xBix.s page 1
|
|||||||
2227 .file 5 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h"
|
2227 .file 5 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h"
|
||||||
2228 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc_ex.h"
|
2228 .file 6 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc_ex.h"
|
||||||
2229 .file 7 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h"
|
2229 .file 7 "Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h"
|
||||||
ARM GAS /tmp/ccj9xBix.s page 77
|
ARM GAS /tmp/ccrobTL8.s page 77
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 stm32f7xx_hal_rcc_ex.c
|
*ABS*:0000000000000000 stm32f7xx_hal_rcc_ex.c
|
||||||
/tmp/ccj9xBix.s:17 .text.HAL_RCCEx_PeriphCLKConfig:0000000000000000 $t
|
/tmp/ccrobTL8.s:17 .text.HAL_RCCEx_PeriphCLKConfig:0000000000000000 $t
|
||||||
/tmp/ccj9xBix.s:25 .text.HAL_RCCEx_PeriphCLKConfig:0000000000000000 HAL_RCCEx_PeriphCLKConfig
|
/tmp/ccrobTL8.s:25 .text.HAL_RCCEx_PeriphCLKConfig:0000000000000000 HAL_RCCEx_PeriphCLKConfig
|
||||||
/tmp/ccj9xBix.s:511 .text.HAL_RCCEx_PeriphCLKConfig:00000000000002e4 $d
|
/tmp/ccrobTL8.s:511 .text.HAL_RCCEx_PeriphCLKConfig:00000000000002e4 $d
|
||||||
/tmp/ccj9xBix.s:515 .text.HAL_RCCEx_PeriphCLKConfig:00000000000002e8 $t
|
/tmp/ccrobTL8.s:515 .text.HAL_RCCEx_PeriphCLKConfig:00000000000002e8 $t
|
||||||
/tmp/ccj9xBix.s:949 .text.HAL_RCCEx_PeriphCLKConfig:0000000000000504 $d
|
/tmp/ccrobTL8.s:949 .text.HAL_RCCEx_PeriphCLKConfig:0000000000000504 $d
|
||||||
/tmp/ccj9xBix.s:956 .text.HAL_RCCEx_PeriphCLKConfig:0000000000000510 $t
|
/tmp/ccrobTL8.s:956 .text.HAL_RCCEx_PeriphCLKConfig:0000000000000510 $t
|
||||||
/tmp/ccj9xBix.s:1124 .text.HAL_RCCEx_PeriphCLKConfig:00000000000005fc $d
|
/tmp/ccrobTL8.s:1124 .text.HAL_RCCEx_PeriphCLKConfig:00000000000005fc $d
|
||||||
/tmp/ccj9xBix.s:1129 .text.HAL_RCCEx_GetPeriphCLKConfig:0000000000000000 $t
|
/tmp/ccrobTL8.s:1129 .text.HAL_RCCEx_GetPeriphCLKConfig:0000000000000000 $t
|
||||||
/tmp/ccj9xBix.s:1136 .text.HAL_RCCEx_GetPeriphCLKConfig:0000000000000000 HAL_RCCEx_GetPeriphCLKConfig
|
/tmp/ccrobTL8.s:1136 .text.HAL_RCCEx_GetPeriphCLKConfig:0000000000000000 HAL_RCCEx_GetPeriphCLKConfig
|
||||||
/tmp/ccj9xBix.s:1395 .text.HAL_RCCEx_GetPeriphCLKConfig:0000000000000180 $d
|
/tmp/ccrobTL8.s:1395 .text.HAL_RCCEx_GetPeriphCLKConfig:0000000000000180 $d
|
||||||
/tmp/ccj9xBix.s:1401 .text.HAL_RCCEx_GetPeriphCLKFreq:0000000000000000 $t
|
/tmp/ccrobTL8.s:1401 .text.HAL_RCCEx_GetPeriphCLKFreq:0000000000000000 $t
|
||||||
/tmp/ccj9xBix.s:1408 .text.HAL_RCCEx_GetPeriphCLKFreq:0000000000000000 HAL_RCCEx_GetPeriphCLKFreq
|
/tmp/ccrobTL8.s:1408 .text.HAL_RCCEx_GetPeriphCLKFreq:0000000000000000 HAL_RCCEx_GetPeriphCLKFreq
|
||||||
/tmp/ccj9xBix.s:1843 .text.HAL_RCCEx_GetPeriphCLKFreq:00000000000001d4 $d
|
/tmp/ccrobTL8.s:1843 .text.HAL_RCCEx_GetPeriphCLKFreq:00000000000001d4 $d
|
||||||
/tmp/ccj9xBix.s:1851 .text.HAL_RCCEx_EnablePLLI2S:0000000000000000 $t
|
/tmp/ccrobTL8.s:1851 .text.HAL_RCCEx_EnablePLLI2S:0000000000000000 $t
|
||||||
/tmp/ccj9xBix.s:1858 .text.HAL_RCCEx_EnablePLLI2S:0000000000000000 HAL_RCCEx_EnablePLLI2S
|
/tmp/ccrobTL8.s:1858 .text.HAL_RCCEx_EnablePLLI2S:0000000000000000 HAL_RCCEx_EnablePLLI2S
|
||||||
/tmp/ccj9xBix.s:1965 .text.HAL_RCCEx_EnablePLLI2S:0000000000000074 $d
|
/tmp/ccrobTL8.s:1965 .text.HAL_RCCEx_EnablePLLI2S:0000000000000074 $d
|
||||||
/tmp/ccj9xBix.s:1970 .text.HAL_RCCEx_DisablePLLI2S:0000000000000000 $t
|
/tmp/ccrobTL8.s:1970 .text.HAL_RCCEx_DisablePLLI2S:0000000000000000 $t
|
||||||
/tmp/ccj9xBix.s:1977 .text.HAL_RCCEx_DisablePLLI2S:0000000000000000 HAL_RCCEx_DisablePLLI2S
|
/tmp/ccrobTL8.s:1977 .text.HAL_RCCEx_DisablePLLI2S:0000000000000000 HAL_RCCEx_DisablePLLI2S
|
||||||
/tmp/ccj9xBix.s:2032 .text.HAL_RCCEx_DisablePLLI2S:0000000000000030 $d
|
/tmp/ccrobTL8.s:2032 .text.HAL_RCCEx_DisablePLLI2S:0000000000000030 $d
|
||||||
/tmp/ccj9xBix.s:2037 .text.HAL_RCCEx_EnablePLLSAI:0000000000000000 $t
|
/tmp/ccrobTL8.s:2037 .text.HAL_RCCEx_EnablePLLSAI:0000000000000000 $t
|
||||||
/tmp/ccj9xBix.s:2044 .text.HAL_RCCEx_EnablePLLSAI:0000000000000000 HAL_RCCEx_EnablePLLSAI
|
/tmp/ccrobTL8.s:2044 .text.HAL_RCCEx_EnablePLLSAI:0000000000000000 HAL_RCCEx_EnablePLLSAI
|
||||||
/tmp/ccj9xBix.s:2151 .text.HAL_RCCEx_EnablePLLSAI:0000000000000074 $d
|
/tmp/ccrobTL8.s:2151 .text.HAL_RCCEx_EnablePLLSAI:0000000000000074 $d
|
||||||
/tmp/ccj9xBix.s:2156 .text.HAL_RCCEx_DisablePLLSAI:0000000000000000 $t
|
/tmp/ccrobTL8.s:2156 .text.HAL_RCCEx_DisablePLLSAI:0000000000000000 $t
|
||||||
/tmp/ccj9xBix.s:2163 .text.HAL_RCCEx_DisablePLLSAI:0000000000000000 HAL_RCCEx_DisablePLLSAI
|
/tmp/ccrobTL8.s:2163 .text.HAL_RCCEx_DisablePLLSAI:0000000000000000 HAL_RCCEx_DisablePLLSAI
|
||||||
/tmp/ccj9xBix.s:2218 .text.HAL_RCCEx_DisablePLLSAI:0000000000000030 $d
|
/tmp/ccrobTL8.s:2218 .text.HAL_RCCEx_DisablePLLSAI:0000000000000030 $d
|
||||||
|
|
||||||
UNDEFINED SYMBOLS
|
UNDEFINED SYMBOLS
|
||||||
HAL_GetTick
|
HAL_GetTick
|
||||||
|
|||||||
Binary file not shown.
@ -29,7 +29,9 @@ build/stm32f7xx_hal_sd.o: \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
||||||
Inc/stm32f7xx_hal_conf.h:
|
Inc/stm32f7xx_hal_conf.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
||||||
@ -62,3 +64,5 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -29,7 +29,9 @@ build/stm32f7xx_hal_tim.o: \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
||||||
Inc/stm32f7xx_hal_conf.h:
|
Inc/stm32f7xx_hal_conf.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
||||||
@ -62,3 +64,5 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -29,7 +29,9 @@ build/stm32f7xx_hal_tim_ex.o: \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
|
||||||
Inc/stm32f7xx_hal_conf.h:
|
Inc/stm32f7xx_hal_conf.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h:
|
||||||
@ -62,3 +64,5 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -29,6 +29,8 @@ build/stm32f7xx_it.o: Src/stm32f7xx_it.c Inc/main.h \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h \
|
||||||
@ -74,6 +76,8 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h:
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -31,6 +31,8 @@ build/stm32f7xx_ll_dma.o: \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h:
|
||||||
Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h:
|
Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h:
|
||||||
@ -65,4 +67,6 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/ccjSmMYW.s page 1
|
ARM GAS /tmp/ccE96WfS.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
28:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c ****
|
28:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c ****
|
||||||
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** /** @addtogroup STM32F7xx_LL_Driver
|
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** /** @addtogroup STM32F7xx_LL_Driver
|
||||||
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** * @{
|
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** * @{
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 2
|
ARM GAS /tmp/ccE96WfS.s page 2
|
||||||
|
|
||||||
|
|
||||||
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** */
|
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** */
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
85:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** ((__VALUE__) == LL_DMA_CHANNEL_14) || \
|
85:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** ((__VALUE__) == LL_DMA_CHANNEL_14) || \
|
||||||
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** ((__VALUE__) == LL_DMA_CHANNEL_15))
|
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** ((__VALUE__) == LL_DMA_CHANNEL_15))
|
||||||
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c ****
|
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c ****
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 3
|
ARM GAS /tmp/ccE96WfS.s page 3
|
||||||
|
|
||||||
|
|
||||||
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** #else
|
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** #else
|
||||||
@ -178,7 +178,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
142:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** ((BURST) == LL_DMA_PBURST_INC16))
|
142:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** ((BURST) == LL_DMA_PBURST_INC16))
|
||||||
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c ****
|
143:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c ****
|
||||||
144:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** /**
|
144:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** /**
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 4
|
ARM GAS /tmp/ccE96WfS.s page 4
|
||||||
|
|
||||||
|
|
||||||
145:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** * @}
|
145:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** * @}
|
||||||
@ -238,7 +238,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
42 .LCFI0:
|
42 .LCFI0:
|
||||||
43 .cfi_def_cfa_offset 8
|
43 .cfi_def_cfa_offset 8
|
||||||
44 .cfi_offset 4, -8
|
44 .cfi_offset 4, -8
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 5
|
ARM GAS /tmp/ccE96WfS.s page 5
|
||||||
|
|
||||||
|
|
||||||
45 .cfi_offset 14, -4
|
45 .cfi_offset 14, -4
|
||||||
@ -298,7 +298,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
23:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** #ifdef __cplusplus
|
23:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** #ifdef __cplusplus
|
||||||
24:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** extern "C" {
|
24:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** extern "C" {
|
||||||
25:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** #endif
|
25:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** #endif
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 6
|
ARM GAS /tmp/ccE96WfS.s page 6
|
||||||
|
|
||||||
|
|
||||||
26:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h ****
|
26:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h ****
|
||||||
@ -358,7 +358,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
80:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** typedef struct
|
80:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** typedef struct
|
||||||
81:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** {
|
81:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** {
|
||||||
82:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** uint32_t PeriphOrM2MSrcAddress; /*!< Specifies the peripheral base address for DMA transfer
|
82:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** uint32_t PeriphOrM2MSrcAddress; /*!< Specifies the peripheral base address for DMA transfer
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 7
|
ARM GAS /tmp/ccE96WfS.s page 7
|
||||||
|
|
||||||
|
|
||||||
83:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** or as Source base address in case of memory to memory trans
|
83:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** or as Source base address in case of memory to memory trans
|
||||||
@ -418,7 +418,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
137:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** This parameter can be a value of @ref DMA_LL_EC_CHANNEL
|
137:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** This parameter can be a value of @ref DMA_LL_EC_CHANNEL
|
||||||
138:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h ****
|
138:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h ****
|
||||||
139:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** This feature can be modified afterwards using unitary funct
|
139:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** This feature can be modified afterwards using unitary funct
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 8
|
ARM GAS /tmp/ccE96WfS.s page 8
|
||||||
|
|
||||||
|
|
||||||
140:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h ****
|
140:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h ****
|
||||||
@ -478,7 +478,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
194:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** #define LL_DMA_STREAM_7 0x00000007U
|
194:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** #define LL_DMA_STREAM_7 0x00000007U
|
||||||
195:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** #define LL_DMA_STREAM_ALL 0xFFFF0000U
|
195:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** #define LL_DMA_STREAM_ALL 0xFFFF0000U
|
||||||
196:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** /**
|
196:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** /**
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 9
|
ARM GAS /tmp/ccE96WfS.s page 9
|
||||||
|
|
||||||
|
|
||||||
197:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @}
|
197:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @}
|
||||||
@ -538,7 +538,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
251:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** #define LL_DMA_PDATAALIGN_HALFWORD DMA_SxCR_PSIZE_0 /*!< Peripheral data alignment
|
251:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** #define LL_DMA_PDATAALIGN_HALFWORD DMA_SxCR_PSIZE_0 /*!< Peripheral data alignment
|
||||||
252:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** #define LL_DMA_PDATAALIGN_WORD DMA_SxCR_PSIZE_1 /*!< Peripheral data alignment
|
252:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** #define LL_DMA_PDATAALIGN_WORD DMA_SxCR_PSIZE_1 /*!< Peripheral data alignment
|
||||||
253:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** /**
|
253:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** /**
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 10
|
ARM GAS /tmp/ccE96WfS.s page 10
|
||||||
|
|
||||||
|
|
||||||
254:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @}
|
254:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @}
|
||||||
@ -598,7 +598,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
308:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** /**
|
308:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** /**
|
||||||
309:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @}
|
309:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @}
|
||||||
310:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** */
|
310:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** */
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 11
|
ARM GAS /tmp/ccE96WfS.s page 11
|
||||||
|
|
||||||
|
|
||||||
311:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h ****
|
311:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h ****
|
||||||
@ -658,7 +658,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
365:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** */
|
365:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** */
|
||||||
366:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h ****
|
366:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h ****
|
||||||
367:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** /** @defgroup DMA_LL_EC_CURRENTTARGETMEM CURRENTTARGETMEM
|
367:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** /** @defgroup DMA_LL_EC_CURRENTTARGETMEM CURRENTTARGETMEM
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 12
|
ARM GAS /tmp/ccE96WfS.s page 12
|
||||||
|
|
||||||
|
|
||||||
368:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @{
|
368:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @{
|
||||||
@ -718,7 +718,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
422:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @retval LL_DMA_CHANNEL_y
|
422:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @retval LL_DMA_CHANNEL_y
|
||||||
423:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** */
|
423:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** */
|
||||||
424:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** #define __LL_DMA_GET_STREAM(__STREAM_INSTANCE__) \
|
424:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** #define __LL_DMA_GET_STREAM(__STREAM_INSTANCE__) \
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 13
|
ARM GAS /tmp/ccE96WfS.s page 13
|
||||||
|
|
||||||
|
|
||||||
425:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** (((uint32_t)(__STREAM_INSTANCE__) == ((uint32_t)DMA1_Stream0)) ? LL_DMA_STREAM_0 : \
|
425:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** (((uint32_t)(__STREAM_INSTANCE__) == ((uint32_t)DMA1_Stream0)) ? LL_DMA_STREAM_0 : \
|
||||||
@ -778,7 +778,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
479:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** /** @defgroup DMA_LL_EF_Configuration Configuration
|
479:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** /** @defgroup DMA_LL_EF_Configuration Configuration
|
||||||
480:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @{
|
480:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @{
|
||||||
481:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** */
|
481:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** */
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 14
|
ARM GAS /tmp/ccE96WfS.s page 14
|
||||||
|
|
||||||
|
|
||||||
482:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** /**
|
482:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** /**
|
||||||
@ -838,7 +838,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
64 .loc 1 213 34 is_stmt 0 view .LVU12
|
64 .loc 1 213 34 is_stmt 0 view .LVU12
|
||||||
65 001a 694B ldr r3, .L43+4
|
65 001a 694B ldr r3, .L43+4
|
||||||
66 001c C31A subs r3, r0, r3
|
66 001c C31A subs r3, r0, r3
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 15
|
ARM GAS /tmp/ccE96WfS.s page 15
|
||||||
|
|
||||||
|
|
||||||
67 001e 18BF it ne
|
67 001e 18BF it ne
|
||||||
@ -898,7 +898,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
121 008c 0122 movne r2, #1
|
121 008c 0122 movne r2, #1
|
||||||
122 008e 53EA0204 orrs r4, r3, r2
|
122 008e 53EA0204 orrs r4, r3, r2
|
||||||
123 0092 57D0 beq .L24
|
123 0092 57D0 beq .L24
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 16
|
ARM GAS /tmp/ccE96WfS.s page 16
|
||||||
|
|
||||||
|
|
||||||
124 .loc 1 213 34 discriminator 21 view .LVU24
|
124 .loc 1 213 34 discriminator 21 view .LVU24
|
||||||
@ -958,7 +958,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
224:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** /* Reset DMAx_Streamy memory address register */
|
224:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** /* Reset DMAx_Streamy memory address register */
|
||||||
225:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** LL_DMA_WriteReg(tmp, M0AR, 0U);
|
225:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** LL_DMA_WriteReg(tmp, M0AR, 0U);
|
||||||
226:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c ****
|
226:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c ****
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 17
|
ARM GAS /tmp/ccE96WfS.s page 17
|
||||||
|
|
||||||
|
|
||||||
227:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** /* Reset DMAx_Streamy memory address register */
|
227:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** /* Reset DMAx_Streamy memory address register */
|
||||||
@ -1018,7 +1018,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
281:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c ****
|
281:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c ****
|
||||||
282:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** return status;
|
282:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** return status;
|
||||||
163 .loc 1 282 3 is_stmt 1 view .LVU34
|
163 .loc 1 282 3 is_stmt 1 view .LVU34
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 18
|
ARM GAS /tmp/ccE96WfS.s page 18
|
||||||
|
|
||||||
|
|
||||||
283:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** }
|
283:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** }
|
||||||
@ -1078,7 +1078,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
45:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h ****
|
45:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h ****
|
||||||
46:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** /** @addtogroup STM32F7xx_LL_Driver
|
46:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** /** @addtogroup STM32F7xx_LL_Driver
|
||||||
47:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * @{
|
47:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * @{
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 19
|
ARM GAS /tmp/ccE96WfS.s page 19
|
||||||
|
|
||||||
|
|
||||||
48:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** */
|
48:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** */
|
||||||
@ -1138,7 +1138,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
102:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_AHB1_GRP1_PERIPH_FLITF RCC_AHB1LPENR_FLITFLPEN
|
102:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_AHB1_GRP1_PERIPH_FLITF RCC_AHB1LPENR_FLITFLPEN
|
||||||
103:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_AHB1_GRP1_PERIPH_SRAM1 RCC_AHB1LPENR_SRAM1LPEN
|
103:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_AHB1_GRP1_PERIPH_SRAM1 RCC_AHB1LPENR_SRAM1LPEN
|
||||||
104:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_AHB1_GRP1_PERIPH_SRAM2 RCC_AHB1LPENR_SRAM2LPEN
|
104:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_AHB1_GRP1_PERIPH_SRAM2 RCC_AHB1LPENR_SRAM2LPEN
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 20
|
ARM GAS /tmp/ccE96WfS.s page 20
|
||||||
|
|
||||||
|
|
||||||
105:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** /**
|
105:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** /**
|
||||||
@ -1198,7 +1198,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
159:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB1_GRP1_PERIPH_SPI2 RCC_APB1ENR_SPI2EN
|
159:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB1_GRP1_PERIPH_SPI2 RCC_APB1ENR_SPI2EN
|
||||||
160:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB1_GRP1_PERIPH_SPI3 RCC_APB1ENR_SPI3EN
|
160:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB1_GRP1_PERIPH_SPI3 RCC_APB1ENR_SPI3EN
|
||||||
161:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #if defined(SPDIFRX)
|
161:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #if defined(SPDIFRX)
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 21
|
ARM GAS /tmp/ccE96WfS.s page 21
|
||||||
|
|
||||||
|
|
||||||
162:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB1_GRP1_PERIPH_SPDIFRX RCC_APB1ENR_SPDIFRXEN
|
162:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB1_GRP1_PERIPH_SPDIFRX RCC_APB1ENR_SPDIFRXEN
|
||||||
@ -1258,7 +1258,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
216:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB2_GRP1_PERIPH_SPI5 RCC_APB2ENR_SPI5EN
|
216:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB2_GRP1_PERIPH_SPI5 RCC_APB2ENR_SPI5EN
|
||||||
217:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #if defined(SPI6)
|
217:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #if defined(SPI6)
|
||||||
218:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB2_GRP1_PERIPH_SPI6 RCC_APB2ENR_SPI6EN
|
218:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB2_GRP1_PERIPH_SPI6 RCC_APB2ENR_SPI6EN
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 22
|
ARM GAS /tmp/ccE96WfS.s page 22
|
||||||
|
|
||||||
|
|
||||||
219:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #endif /* SPI6 */
|
219:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #endif /* SPI6 */
|
||||||
@ -1318,7 +1318,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
273:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR DMA2EN LL_AHB1_GRP1_EnableClock\n
|
273:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR DMA2EN LL_AHB1_GRP1_EnableClock\n
|
||||||
274:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR DMA2DEN LL_AHB1_GRP1_EnableClock\n
|
274:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR DMA2DEN LL_AHB1_GRP1_EnableClock\n
|
||||||
275:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR ETHMACEN LL_AHB1_GRP1_EnableClock\n
|
275:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR ETHMACEN LL_AHB1_GRP1_EnableClock\n
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 23
|
ARM GAS /tmp/ccE96WfS.s page 23
|
||||||
|
|
||||||
|
|
||||||
276:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR ETHMACTXEN LL_AHB1_GRP1_EnableClock\n
|
276:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR ETHMACTXEN LL_AHB1_GRP1_EnableClock\n
|
||||||
@ -1378,7 +1378,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
330:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR GPIOKEN LL_AHB1_GRP1_IsEnabledClock\n
|
330:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR GPIOKEN LL_AHB1_GRP1_IsEnabledClock\n
|
||||||
331:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR CRCEN LL_AHB1_GRP1_IsEnabledClock\n
|
331:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR CRCEN LL_AHB1_GRP1_IsEnabledClock\n
|
||||||
332:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR BKPSRAMEN LL_AHB1_GRP1_IsEnabledClock\n
|
332:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR BKPSRAMEN LL_AHB1_GRP1_IsEnabledClock\n
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 24
|
ARM GAS /tmp/ccE96WfS.s page 24
|
||||||
|
|
||||||
|
|
||||||
333:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR DTCMRAMEN LL_AHB1_GRP1_IsEnabledClock\n
|
333:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR DTCMRAMEN LL_AHB1_GRP1_IsEnabledClock\n
|
||||||
@ -1438,7 +1438,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
387:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR GPIOJEN LL_AHB1_GRP1_DisableClock\n
|
387:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR GPIOJEN LL_AHB1_GRP1_DisableClock\n
|
||||||
388:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR GPIOKEN LL_AHB1_GRP1_DisableClock\n
|
388:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR GPIOKEN LL_AHB1_GRP1_DisableClock\n
|
||||||
389:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR CRCEN LL_AHB1_GRP1_DisableClock\n
|
389:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR CRCEN LL_AHB1_GRP1_DisableClock\n
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 25
|
ARM GAS /tmp/ccE96WfS.s page 25
|
||||||
|
|
||||||
|
|
||||||
390:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR BKPSRAMEN LL_AHB1_GRP1_DisableClock\n
|
390:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR BKPSRAMEN LL_AHB1_GRP1_DisableClock\n
|
||||||
@ -1498,7 +1498,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
444:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR GPIOIRST LL_AHB1_GRP1_ForceReset\n
|
444:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR GPIOIRST LL_AHB1_GRP1_ForceReset\n
|
||||||
445:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR GPIOJRST LL_AHB1_GRP1_ForceReset\n
|
445:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR GPIOJRST LL_AHB1_GRP1_ForceReset\n
|
||||||
446:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR GPIOKRST LL_AHB1_GRP1_ForceReset\n
|
446:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR GPIOKRST LL_AHB1_GRP1_ForceReset\n
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 26
|
ARM GAS /tmp/ccE96WfS.s page 26
|
||||||
|
|
||||||
|
|
||||||
447:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR CRCRST LL_AHB1_GRP1_ForceReset\n
|
447:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR CRCRST LL_AHB1_GRP1_ForceReset\n
|
||||||
@ -1558,7 +1558,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
486:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR GPIODRST LL_AHB1_GRP1_ReleaseReset\n
|
486:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR GPIODRST LL_AHB1_GRP1_ReleaseReset\n
|
||||||
487:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR GPIOERST LL_AHB1_GRP1_ReleaseReset\n
|
487:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR GPIOERST LL_AHB1_GRP1_ReleaseReset\n
|
||||||
488:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR GPIOFRST LL_AHB1_GRP1_ReleaseReset\n
|
488:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR GPIOFRST LL_AHB1_GRP1_ReleaseReset\n
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 27
|
ARM GAS /tmp/ccE96WfS.s page 27
|
||||||
|
|
||||||
|
|
||||||
489:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR GPIOGRST LL_AHB1_GRP1_ReleaseReset\n
|
489:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR GPIOGRST LL_AHB1_GRP1_ReleaseReset\n
|
||||||
@ -1618,7 +1618,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
201 .LVL7:
|
201 .LVL7:
|
||||||
202 .L35:
|
202 .L35:
|
||||||
203 .loc 3 526 1 view .LVU45
|
203 .loc 3 526 1 view .LVU45
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 28
|
ARM GAS /tmp/ccE96WfS.s page 28
|
||||||
|
|
||||||
|
|
||||||
204 .LBE36:
|
204 .LBE36:
|
||||||
@ -1678,7 +1678,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
249 .L5:
|
249 .L5:
|
||||||
250 .LVL11:
|
250 .LVL11:
|
||||||
216:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c ****
|
216:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c ****
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 29
|
ARM GAS /tmp/ccE96WfS.s page 29
|
||||||
|
|
||||||
|
|
||||||
251 .loc 1 216 5 is_stmt 1 discriminator 60 view .LVU57
|
251 .loc 1 216 5 is_stmt 1 discriminator 60 view .LVU57
|
||||||
@ -1738,7 +1738,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
550:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * CR PL LL_DMA_ConfigTransfer\n
|
550:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * CR PL LL_DMA_ConfigTransfer\n
|
||||||
551:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * CR PFCTRL LL_DMA_ConfigTransfer
|
551:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * CR PFCTRL LL_DMA_ConfigTransfer
|
||||||
552:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @param DMAx DMAx Instance
|
552:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @param DMAx DMAx Instance
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 30
|
ARM GAS /tmp/ccE96WfS.s page 30
|
||||||
|
|
||||||
|
|
||||||
553:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @param Stream This parameter can be one of the following values:
|
553:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @param Stream This parameter can be one of the following values:
|
||||||
@ -1798,7 +1798,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
607:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @param Stream This parameter can be one of the following values:
|
607:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @param Stream This parameter can be one of the following values:
|
||||||
608:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_0
|
608:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_0
|
||||||
609:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_1
|
609:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_1
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 31
|
ARM GAS /tmp/ccE96WfS.s page 31
|
||||||
|
|
||||||
|
|
||||||
610:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_2
|
610:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_2
|
||||||
@ -1858,7 +1858,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
664:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_7
|
664:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_7
|
||||||
665:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @retval Returned value can be one of the following values:
|
665:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @retval Returned value can be one of the following values:
|
||||||
666:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_MODE_NORMAL
|
666:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_MODE_NORMAL
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 32
|
ARM GAS /tmp/ccE96WfS.s page 32
|
||||||
|
|
||||||
|
|
||||||
667:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_MODE_CIRCULAR
|
667:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_MODE_CIRCULAR
|
||||||
@ -1918,7 +1918,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
721:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @brief Set Memory increment mode.
|
721:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @brief Set Memory increment mode.
|
||||||
722:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @rmtoll CR MINC LL_DMA_SetMemoryIncMode
|
722:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @rmtoll CR MINC LL_DMA_SetMemoryIncMode
|
||||||
723:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @param DMAx DMAx Instance
|
723:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @param DMAx DMAx Instance
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 33
|
ARM GAS /tmp/ccE96WfS.s page 33
|
||||||
|
|
||||||
|
|
||||||
724:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @param Stream This parameter can be one of the following values:
|
724:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @param Stream This parameter can be one of the following values:
|
||||||
@ -1978,7 +1978,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
778:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @param Size This parameter can be one of the following values:
|
778:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @param Size This parameter can be one of the following values:
|
||||||
779:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_PDATAALIGN_BYTE
|
779:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_PDATAALIGN_BYTE
|
||||||
780:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_PDATAALIGN_HALFWORD
|
780:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_PDATAALIGN_HALFWORD
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 34
|
ARM GAS /tmp/ccE96WfS.s page 34
|
||||||
|
|
||||||
|
|
||||||
781:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_PDATAALIGN_WORD
|
781:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_PDATAALIGN_WORD
|
||||||
@ -2038,7 +2038,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
835:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h ****
|
835:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h ****
|
||||||
836:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** /**
|
836:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** /**
|
||||||
837:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @brief Get Memory size.
|
837:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @brief Get Memory size.
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 35
|
ARM GAS /tmp/ccE96WfS.s page 35
|
||||||
|
|
||||||
|
|
||||||
838:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @rmtoll CR MSIZE LL_DMA_GetMemorySize
|
838:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @rmtoll CR MSIZE LL_DMA_GetMemorySize
|
||||||
@ -2098,7 +2098,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
892:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_5
|
892:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_5
|
||||||
893:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_6
|
893:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_6
|
||||||
894:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_7
|
894:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_7
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 36
|
ARM GAS /tmp/ccE96WfS.s page 36
|
||||||
|
|
||||||
|
|
||||||
895:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @retval Returned value can be one of the following values:
|
895:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @retval Returned value can be one of the following values:
|
||||||
@ -2158,7 +2158,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
949:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** {
|
949:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** {
|
||||||
950:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** return (READ_BIT(((DMA_Stream_TypeDef*)((uint32_t)((uint32_t)DMAx + STREAM_OFFSET_TAB[Stream])))-
|
950:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** return (READ_BIT(((DMA_Stream_TypeDef*)((uint32_t)((uint32_t)DMAx + STREAM_OFFSET_TAB[Stream])))-
|
||||||
951:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** }
|
951:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** }
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 37
|
ARM GAS /tmp/ccE96WfS.s page 37
|
||||||
|
|
||||||
|
|
||||||
952:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h ****
|
952:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h ****
|
||||||
@ -2218,7 +2218,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
1006:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_3
|
1006:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_3
|
||||||
1007:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_4
|
1007:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_4
|
||||||
1008:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_5
|
1008:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_5
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 38
|
ARM GAS /tmp/ccE96WfS.s page 38
|
||||||
|
|
||||||
|
|
||||||
1009:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_6
|
1009:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_6
|
||||||
@ -2278,7 +2278,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
282:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** }
|
282:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** }
|
||||||
292 .loc 1 282 3 is_stmt 1 view .LVU73
|
292 .loc 1 282 3 is_stmt 1 view .LVU73
|
||||||
293 .loc 1 283 1 is_stmt 0 view .LVU74
|
293 .loc 1 283 1 is_stmt 0 view .LVU74
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 39
|
ARM GAS /tmp/ccE96WfS.s page 39
|
||||||
|
|
||||||
|
|
||||||
294 011e 10BD pop {r4, pc}
|
294 011e 10BD pop {r4, pc}
|
||||||
@ -2338,7 +2338,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
246:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** {
|
246:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** {
|
||||||
345 .loc 1 246 10 is_stmt 1 view .LVU78
|
345 .loc 1 246 10 is_stmt 1 view .LVU78
|
||||||
246:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** {
|
246:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** {
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 40
|
ARM GAS /tmp/ccE96WfS.s page 40
|
||||||
|
|
||||||
|
|
||||||
346 .loc 1 246 12 is_stmt 0 view .LVU79
|
346 .loc 1 246 12 is_stmt 0 view .LVU79
|
||||||
@ -2398,7 +2398,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
384 0180 CDE7 b .L4
|
384 0180 CDE7 b .L4
|
||||||
385 .LVL21:
|
385 .LVL21:
|
||||||
386 .L37:
|
386 .L37:
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 41
|
ARM GAS /tmp/ccE96WfS.s page 41
|
||||||
|
|
||||||
|
|
||||||
249:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** }
|
249:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** }
|
||||||
@ -2458,7 +2458,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
426 .LVL28:
|
426 .LVL28:
|
||||||
179:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c ****
|
179:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c ****
|
||||||
427 .loc 1 179 15 view .LVU111
|
427 .loc 1 179 15 view .LVU111
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 42
|
ARM GAS /tmp/ccE96WfS.s page 42
|
||||||
|
|
||||||
|
|
||||||
428 01a6 BAE7 b .L4
|
428 01a6 BAE7 b .L4
|
||||||
@ -2518,7 +2518,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
475 .section .text.LL_DMA_Init,"ax",%progbits
|
475 .section .text.LL_DMA_Init,"ax",%progbits
|
||||||
476 .align 1
|
476 .align 1
|
||||||
477 .global LL_DMA_Init
|
477 .global LL_DMA_Init
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 43
|
ARM GAS /tmp/ccE96WfS.s page 43
|
||||||
|
|
||||||
|
|
||||||
478 .syntax unified
|
478 .syntax unified
|
||||||
@ -2578,7 +2578,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
315:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** assert_param(IS_LL_DMA_PERIPHDATASIZE(DMA_InitStruct->PeriphOrM2MSrcDataSize));
|
315:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** assert_param(IS_LL_DMA_PERIPHDATASIZE(DMA_InitStruct->PeriphOrM2MSrcDataSize));
|
||||||
502 .loc 1 315 3 view .LVU127
|
502 .loc 1 315 3 view .LVU127
|
||||||
316:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** assert_param(IS_LL_DMA_MEMORYDATASIZE(DMA_InitStruct->MemoryOrM2MDstDataSize));
|
316:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** assert_param(IS_LL_DMA_MEMORYDATASIZE(DMA_InitStruct->MemoryOrM2MDstDataSize));
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 44
|
ARM GAS /tmp/ccE96WfS.s page 44
|
||||||
|
|
||||||
|
|
||||||
503 .loc 1 316 3 view .LVU128
|
503 .loc 1 316 3 view .LVU128
|
||||||
@ -2638,7 +2638,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
525 .loc 1 344 65 view .LVU144
|
525 .loc 1 344 65 view .LVU144
|
||||||
526 000e 2343 orrs r3, r3, r4
|
526 000e 2343 orrs r3, r3, r4
|
||||||
346:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** DMA_InitStruct->PeriphOrM2MSrcDataSize | \
|
346:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** DMA_InitStruct->PeriphOrM2MSrcDataSize | \
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 45
|
ARM GAS /tmp/ccE96WfS.s page 45
|
||||||
|
|
||||||
|
|
||||||
527 .loc 1 346 39 view .LVU145
|
527 .loc 1 346 39 view .LVU145
|
||||||
@ -2698,7 +2698,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
354:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** * Configure DMAx_Streamy: fifo mode and fifo threshold with parameters :
|
354:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** * Configure DMAx_Streamy: fifo mode and fifo threshold with parameters :
|
||||||
355:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** * - FIFOMode: DMA_SxFCR_DMDIS bit
|
355:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** * - FIFOMode: DMA_SxFCR_DMDIS bit
|
||||||
356:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** * - FIFOThreshold: DMA_SxFCR_FTH[1:0] bits
|
356:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** * - FIFOThreshold: DMA_SxFCR_FTH[1:0] bits
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 46
|
ARM GAS /tmp/ccE96WfS.s page 46
|
||||||
|
|
||||||
|
|
||||||
357:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** */
|
357:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** */
|
||||||
@ -2758,7 +2758,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
1082:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_2
|
1082:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_2
|
||||||
1083:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_3
|
1083:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_3
|
||||||
1084:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_4
|
1084:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_4
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 47
|
ARM GAS /tmp/ccE96WfS.s page 47
|
||||||
|
|
||||||
|
|
||||||
1085:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_5
|
1085:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_5
|
||||||
@ -2818,7 +2818,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
1139:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_PBURST_INC4
|
1139:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_PBURST_INC4
|
||||||
1140:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_PBURST_INC8
|
1140:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_PBURST_INC8
|
||||||
1141:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_PBURST_INC16
|
1141:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_PBURST_INC16
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 48
|
ARM GAS /tmp/ccE96WfS.s page 48
|
||||||
|
|
||||||
|
|
||||||
1142:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @retval None
|
1142:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @retval None
|
||||||
@ -2878,7 +2878,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
1196:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** /**
|
1196:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** /**
|
||||||
1197:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @brief Set Current target (only in double buffer mode) to Memory 1 or Memory 0.
|
1197:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @brief Set Current target (only in double buffer mode) to Memory 1 or Memory 0.
|
||||||
1198:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @rmtoll CR CT LL_DMA_GetCurrentTargetMem
|
1198:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @rmtoll CR CT LL_DMA_GetCurrentTargetMem
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 49
|
ARM GAS /tmp/ccE96WfS.s page 49
|
||||||
|
|
||||||
|
|
||||||
1199:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @param DMAx DMAx Instance
|
1199:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @param DMAx DMAx Instance
|
||||||
@ -2938,7 +2938,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
1253:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** __STATIC_INLINE void LL_DMA_DisableDoubleBufferMode(DMA_TypeDef *DMAx, uint32_t Stream)
|
1253:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** __STATIC_INLINE void LL_DMA_DisableDoubleBufferMode(DMA_TypeDef *DMAx, uint32_t Stream)
|
||||||
1254:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** {
|
1254:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** {
|
||||||
1255:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** CLEAR_BIT(((DMA_Stream_TypeDef *)((uint32_t)((uint32_t)DMAx + STREAM_OFFSET_TAB[Stream])))->CR, D
|
1255:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** CLEAR_BIT(((DMA_Stream_TypeDef *)((uint32_t)((uint32_t)DMAx + STREAM_OFFSET_TAB[Stream])))->CR, D
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 50
|
ARM GAS /tmp/ccE96WfS.s page 50
|
||||||
|
|
||||||
|
|
||||||
1256:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** }
|
1256:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** }
|
||||||
@ -2998,7 +2998,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
1310:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_1
|
1310:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_1
|
||||||
1311:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_2
|
1311:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_2
|
||||||
1312:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_3
|
1312:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_3
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 51
|
ARM GAS /tmp/ccE96WfS.s page 51
|
||||||
|
|
||||||
|
|
||||||
1313:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_4
|
1313:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_4
|
||||||
@ -3058,7 +3058,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
1367:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** */
|
1367:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** */
|
||||||
1368:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** __STATIC_INLINE uint32_t LL_DMA_GetFIFOThreshold(DMA_TypeDef *DMAx, uint32_t Stream)
|
1368:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** __STATIC_INLINE uint32_t LL_DMA_GetFIFOThreshold(DMA_TypeDef *DMAx, uint32_t Stream)
|
||||||
1369:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** {
|
1369:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** {
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 52
|
ARM GAS /tmp/ccE96WfS.s page 52
|
||||||
|
|
||||||
|
|
||||||
1370:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** return (READ_BIT(((DMA_Stream_TypeDef*)((uint32_t)((uint32_t)DMAx + STREAM_OFFSET_TAB[Stream])))-
|
1370:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** return (READ_BIT(((DMA_Stream_TypeDef*)((uint32_t)((uint32_t)DMAx + STREAM_OFFSET_TAB[Stream])))-
|
||||||
@ -3118,7 +3118,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
589 .LBI50:
|
589 .LBI50:
|
||||||
1095:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** {
|
1095:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** {
|
||||||
590 .loc 2 1095 22 view .LVU165
|
590 .loc 2 1095 22 view .LVU165
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 53
|
ARM GAS /tmp/ccE96WfS.s page 53
|
||||||
|
|
||||||
|
|
||||||
591 .LBB51:
|
591 .LBB51:
|
||||||
@ -3178,7 +3178,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
625 .LBB54:
|
625 .LBB54:
|
||||||
626 .LBI54:
|
626 .LBI54:
|
||||||
1400:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** }
|
1400:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** }
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 54
|
ARM GAS /tmp/ccE96WfS.s page 54
|
||||||
|
|
||||||
|
|
||||||
1401:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h ****
|
1401:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h ****
|
||||||
@ -3238,7 +3238,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
1455:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_7
|
1455:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @arg @ref LL_DMA_STREAM_7
|
||||||
1456:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @param MemoryAddress Between 0 to 0xFFFFFFFF
|
1456:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @param MemoryAddress Between 0 to 0xFFFFFFFF
|
||||||
1457:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @retval None
|
1457:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** * @retval None
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 55
|
ARM GAS /tmp/ccE96WfS.s page 55
|
||||||
|
|
||||||
|
|
||||||
1458:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** */
|
1458:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h **** */
|
||||||
@ -3298,7 +3298,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
384:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c ****
|
384:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c ****
|
||||||
385:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** /*--------------------------- DMAx SxNDTR Configuration -------------------------
|
385:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** /*--------------------------- DMAx SxNDTR Configuration -------------------------
|
||||||
386:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** * Configure the peripheral base address with parameter :
|
386:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** * Configure the peripheral base address with parameter :
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 56
|
ARM GAS /tmp/ccE96WfS.s page 56
|
||||||
|
|
||||||
|
|
||||||
387:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** * - NbData: DMA_SxNDT[15:0] bits
|
387:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** * - NbData: DMA_SxNDT[15:0] bits
|
||||||
@ -3358,7 +3358,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
684 .loc 2 1034 3 view .LVU192
|
684 .loc 2 1034 3 view .LVU192
|
||||||
685 .LBE61:
|
685 .LBE61:
|
||||||
686 .LBE60:
|
686 .LBE60:
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 57
|
ARM GAS /tmp/ccE96WfS.s page 57
|
||||||
|
|
||||||
|
|
||||||
396:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c ****
|
396:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c ****
|
||||||
@ -3418,7 +3418,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
729 0004 4360 str r3, [r0, #4]
|
729 0004 4360 str r3, [r0, #4]
|
||||||
410:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** DMA_InitStruct->Direction = LL_DMA_DIRECTION_PERIPH_TO_MEMORY;
|
410:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_dma.c **** DMA_InitStruct->Direction = LL_DMA_DIRECTION_PERIPH_TO_MEMORY;
|
||||||
730 .loc 1 410 3 is_stmt 1 view .LVU201
|
730 .loc 1 410 3 is_stmt 1 view .LVU201
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 58
|
ARM GAS /tmp/ccE96WfS.s page 58
|
||||||
|
|
||||||
|
|
||||||
731 .loc 1 410 42 is_stmt 0 view .LVU202
|
731 .loc 1 410 42 is_stmt 0 view .LVU202
|
||||||
@ -3478,7 +3478,7 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
772 .LFE322:
|
772 .LFE322:
|
||||||
774 .section .rodata.STREAM_OFFSET_TAB,"a"
|
774 .section .rodata.STREAM_OFFSET_TAB,"a"
|
||||||
775 .align 2
|
775 .align 2
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 59
|
ARM GAS /tmp/ccE96WfS.s page 59
|
||||||
|
|
||||||
|
|
||||||
776 .set .LANCHOR0,. + 0
|
776 .set .LANCHOR0,. + 0
|
||||||
@ -3490,20 +3490,20 @@ ARM GAS /tmp/ccjSmMYW.s page 1
|
|||||||
783 .file 4 "/usr/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h"
|
783 .file 4 "/usr/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h"
|
||||||
784 .file 5 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f767xx.h"
|
784 .file 5 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f767xx.h"
|
||||||
785 .file 6 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h"
|
785 .file 6 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h"
|
||||||
ARM GAS /tmp/ccjSmMYW.s page 60
|
ARM GAS /tmp/ccE96WfS.s page 60
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 stm32f7xx_ll_dma.c
|
*ABS*:0000000000000000 stm32f7xx_ll_dma.c
|
||||||
/tmp/ccjSmMYW.s:17 .text.LL_DMA_DeInit:0000000000000000 $t
|
/tmp/ccE96WfS.s:17 .text.LL_DMA_DeInit:0000000000000000 $t
|
||||||
/tmp/ccjSmMYW.s:25 .text.LL_DMA_DeInit:0000000000000000 LL_DMA_DeInit
|
/tmp/ccE96WfS.s:25 .text.LL_DMA_DeInit:0000000000000000 LL_DMA_DeInit
|
||||||
/tmp/ccjSmMYW.s:454 .text.LL_DMA_DeInit:00000000000001bc $d
|
/tmp/ccE96WfS.s:454 .text.LL_DMA_DeInit:00000000000001bc $d
|
||||||
/tmp/ccjSmMYW.s:476 .text.LL_DMA_Init:0000000000000000 $t
|
/tmp/ccE96WfS.s:476 .text.LL_DMA_Init:0000000000000000 $t
|
||||||
/tmp/ccjSmMYW.s:483 .text.LL_DMA_Init:0000000000000000 LL_DMA_Init
|
/tmp/ccE96WfS.s:483 .text.LL_DMA_Init:0000000000000000 LL_DMA_Init
|
||||||
/tmp/ccjSmMYW.s:701 .text.LL_DMA_Init:000000000000008c $d
|
/tmp/ccE96WfS.s:701 .text.LL_DMA_Init:000000000000008c $d
|
||||||
/tmp/ccjSmMYW.s:708 .text.LL_DMA_StructInit:0000000000000000 $t
|
/tmp/ccE96WfS.s:708 .text.LL_DMA_StructInit:0000000000000000 $t
|
||||||
/tmp/ccjSmMYW.s:715 .text.LL_DMA_StructInit:0000000000000000 LL_DMA_StructInit
|
/tmp/ccE96WfS.s:715 .text.LL_DMA_StructInit:0000000000000000 LL_DMA_StructInit
|
||||||
/tmp/ccjSmMYW.s:775 .rodata.STREAM_OFFSET_TAB:0000000000000000 $d
|
/tmp/ccE96WfS.s:775 .rodata.STREAM_OFFSET_TAB:0000000000000000 $d
|
||||||
/tmp/ccjSmMYW.s:779 .rodata.STREAM_OFFSET_TAB:0000000000000000 STREAM_OFFSET_TAB
|
/tmp/ccE96WfS.s:779 .rodata.STREAM_OFFSET_TAB:0000000000000000 STREAM_OFFSET_TAB
|
||||||
|
|
||||||
NO UNDEFINED SYMBOLS
|
NO UNDEFINED SYMBOLS
|
||||||
|
|||||||
Binary file not shown.
@ -30,7 +30,9 @@ build/stm32f7xx_ll_exti.o: \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h:
|
||||||
Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h:
|
Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h:
|
||||||
Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f767xx.h:
|
Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f767xx.h:
|
||||||
@ -64,3 +66,5 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/ccp9HNtD.s page 1
|
ARM GAS /tmp/ccf8Vjfd.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_exti.c **** * @{
|
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_exti.c **** * @{
|
||||||
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_exti.c **** */
|
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_exti.c **** */
|
||||||
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_exti.c ****
|
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_exti.c ****
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 2
|
ARM GAS /tmp/ccf8Vjfd.s page 2
|
||||||
|
|
||||||
|
|
||||||
32:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_exti.c **** #if defined (EXTI)
|
32:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_exti.c **** #if defined (EXTI)
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
81:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_exti.c **** /* Interrupt mask register set to default reset values */
|
81:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_exti.c **** /* Interrupt mask register set to default reset values */
|
||||||
82:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_exti.c **** LL_EXTI_WriteReg(IMR, 0x00000000U);
|
82:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_exti.c **** LL_EXTI_WriteReg(IMR, 0x00000000U);
|
||||||
33 .loc 1 82 3 view .LVU1
|
33 .loc 1 82 3 view .LVU1
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 3
|
ARM GAS /tmp/ccf8Vjfd.s page 3
|
||||||
|
|
||||||
|
|
||||||
34 0000 054B ldr r3, .L2
|
34 0000 054B ldr r3, .L2
|
||||||
@ -178,7 +178,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
104:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_exti.c **** uint32_t LL_EXTI_Init(LL_EXTI_InitTypeDef *EXTI_InitStruct)
|
104:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_exti.c **** uint32_t LL_EXTI_Init(LL_EXTI_InitTypeDef *EXTI_InitStruct)
|
||||||
105:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_exti.c **** {
|
105:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_exti.c **** {
|
||||||
69 .loc 1 105 1 is_stmt 1 view -0
|
69 .loc 1 105 1 is_stmt 1 view -0
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 4
|
ARM GAS /tmp/ccf8Vjfd.s page 4
|
||||||
|
|
||||||
|
|
||||||
70 .cfi_startproc
|
70 .cfi_startproc
|
||||||
@ -238,7 +238,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
109 .L9:
|
109 .L9:
|
||||||
110 .LVL3:
|
110 .LVL3:
|
||||||
121:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_exti.c **** {
|
121:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_exti.c **** {
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 5
|
ARM GAS /tmp/ccf8Vjfd.s page 5
|
||||||
|
|
||||||
|
|
||||||
122:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_exti.c **** case LL_EXTI_MODE_IT:
|
122:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_exti.c **** case LL_EXTI_MODE_IT:
|
||||||
@ -298,7 +298,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
7:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @attention
|
7:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @attention
|
||||||
8:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** *
|
8:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** *
|
||||||
9:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * Copyright (c) 2017 STMicroelectronics.
|
9:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * Copyright (c) 2017 STMicroelectronics.
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 6
|
ARM GAS /tmp/ccf8Vjfd.s page 6
|
||||||
|
|
||||||
|
|
||||||
10:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * All rights reserved.
|
10:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * All rights reserved.
|
||||||
@ -358,7 +358,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
64:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** This parameter can be set either to ENABLE or DISABLE */
|
64:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** This parameter can be set either to ENABLE or DISABLE */
|
||||||
65:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h ****
|
65:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h ****
|
||||||
66:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** uint8_t Mode; /*!< Specifies the mode for the EXTI lines.
|
66:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** uint8_t Mode; /*!< Specifies the mode for the EXTI lines.
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 7
|
ARM GAS /tmp/ccf8Vjfd.s page 7
|
||||||
|
|
||||||
|
|
||||||
67:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** This parameter can be a value of @ref EXTI_LL_EC_MODE. */
|
67:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** This parameter can be a value of @ref EXTI_LL_EC_MODE. */
|
||||||
@ -418,7 +418,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
121:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** #define LL_EXTI_LINE_24 EXTI_IMR_IM24 /*!< Extended line 24 */
|
121:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** #define LL_EXTI_LINE_24 EXTI_IMR_IM24 /*!< Extended line 24 */
|
||||||
122:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** #endif
|
122:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** #endif
|
||||||
123:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** #if defined(EXTI_IMR_IM25)
|
123:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** #if defined(EXTI_IMR_IM25)
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 8
|
ARM GAS /tmp/ccf8Vjfd.s page 8
|
||||||
|
|
||||||
|
|
||||||
124:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** #define LL_EXTI_LINE_25 EXTI_IMR_IM25 /*!< Extended line 25 */
|
124:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** #define LL_EXTI_LINE_25 EXTI_IMR_IM25 /*!< Extended line 25 */
|
||||||
@ -478,7 +478,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
178:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** */
|
178:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** */
|
||||||
179:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h ****
|
179:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h ****
|
||||||
180:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h ****
|
180:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h ****
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 9
|
ARM GAS /tmp/ccf8Vjfd.s page 9
|
||||||
|
|
||||||
|
|
||||||
181:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** #endif /*USE_FULL_LL_DRIVER*/
|
181:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** #endif /*USE_FULL_LL_DRIVER*/
|
||||||
@ -538,7 +538,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
235:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @rmtoll IMR IMx LL_EXTI_EnableIT_0_31
|
235:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @rmtoll IMR IMx LL_EXTI_EnableIT_0_31
|
||||||
236:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @param ExtiLine This parameter can be one of the following values:
|
236:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @param ExtiLine This parameter can be one of the following values:
|
||||||
237:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_0
|
237:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_0
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 10
|
ARM GAS /tmp/ccf8Vjfd.s page 10
|
||||||
|
|
||||||
|
|
||||||
238:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_1
|
238:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_1
|
||||||
@ -598,7 +598,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
292:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_13
|
292:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_13
|
||||||
293:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_14
|
293:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_14
|
||||||
294:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_15
|
294:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_15
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 11
|
ARM GAS /tmp/ccf8Vjfd.s page 11
|
||||||
|
|
||||||
|
|
||||||
295:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_16
|
295:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_16
|
||||||
@ -658,7 +658,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
349:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @note Please check each device line mapping for EXTI Line availability
|
349:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @note Please check each device line mapping for EXTI Line availability
|
||||||
350:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @retval State of bit (1 or 0).
|
350:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @retval State of bit (1 or 0).
|
||||||
351:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** */
|
351:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** */
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 12
|
ARM GAS /tmp/ccf8Vjfd.s page 12
|
||||||
|
|
||||||
|
|
||||||
352:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** __STATIC_INLINE uint32_t LL_EXTI_IsEnabledIT_0_31(uint32_t ExtiLine)
|
352:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** __STATIC_INLINE uint32_t LL_EXTI_IsEnabledIT_0_31(uint32_t ExtiLine)
|
||||||
@ -718,7 +718,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
406:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h ****
|
406:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h ****
|
||||||
407:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** /**
|
407:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** /**
|
||||||
408:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @brief Disable ExtiLine Event request for Lines in range 0 to 31
|
408:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @brief Disable ExtiLine Event request for Lines in range 0 to 31
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 13
|
ARM GAS /tmp/ccf8Vjfd.s page 13
|
||||||
|
|
||||||
|
|
||||||
409:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @rmtoll EMR EMx LL_EXTI_DisableEvent_0_31
|
409:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @rmtoll EMR EMx LL_EXTI_DisableEvent_0_31
|
||||||
@ -778,7 +778,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
267:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** {
|
267:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** {
|
||||||
152 .loc 2 267 22 view .LVU36
|
152 .loc 2 267 22 view .LVU36
|
||||||
153 .LBB33:
|
153 .LBB33:
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 14
|
ARM GAS /tmp/ccf8Vjfd.s page 14
|
||||||
|
|
||||||
|
|
||||||
269:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** }
|
269:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** }
|
||||||
@ -838,7 +838,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
195 .loc 2 402 3 is_stmt 0 view .LVU49
|
195 .loc 2 402 3 is_stmt 0 view .LVU49
|
||||||
196 0058 4A60 str r2, [r1, #4]
|
196 0058 4A60 str r2, [r1, #4]
|
||||||
197 .LVL16:
|
197 .LVL16:
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 15
|
ARM GAS /tmp/ccf8Vjfd.s page 15
|
||||||
|
|
||||||
|
|
||||||
402:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h ****
|
402:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h ****
|
||||||
@ -898,7 +898,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
239 .loc 2 402 3 is_stmt 0 view .LVU62
|
239 .loc 2 402 3 is_stmt 0 view .LVU62
|
||||||
240 006c 4A60 str r2, [r1, #4]
|
240 006c 4A60 str r2, [r1, #4]
|
||||||
241 .LVL22:
|
241 .LVL22:
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 16
|
ARM GAS /tmp/ccf8Vjfd.s page 16
|
||||||
|
|
||||||
|
|
||||||
402:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h ****
|
402:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h ****
|
||||||
@ -958,7 +958,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
471:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_20
|
471:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_20
|
||||||
472:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_21
|
472:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_21
|
||||||
473:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_22
|
473:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_22
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 17
|
ARM GAS /tmp/ccf8Vjfd.s page 17
|
||||||
|
|
||||||
|
|
||||||
474:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_23
|
474:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_23
|
||||||
@ -1018,7 +1018,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
528:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_22
|
528:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_22
|
||||||
529:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @note Please check each device line mapping for EXTI Line availability
|
529:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @note Please check each device line mapping for EXTI Line availability
|
||||||
530:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @retval None
|
530:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @retval None
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 18
|
ARM GAS /tmp/ccf8Vjfd.s page 18
|
||||||
|
|
||||||
|
|
||||||
531:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** */
|
531:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** */
|
||||||
@ -1078,7 +1078,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
585:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @param ExtiLine This parameter can be a combination of the following values:
|
585:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @param ExtiLine This parameter can be a combination of the following values:
|
||||||
586:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_0
|
586:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_0
|
||||||
587:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_1
|
587:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_1
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 19
|
ARM GAS /tmp/ccf8Vjfd.s page 19
|
||||||
|
|
||||||
|
|
||||||
588:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_2
|
588:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_2
|
||||||
@ -1138,7 +1138,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
642:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_6
|
642:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_6
|
||||||
643:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_7
|
643:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_7
|
||||||
644:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_8
|
644:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_8
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 20
|
ARM GAS /tmp/ccf8Vjfd.s page 20
|
||||||
|
|
||||||
|
|
||||||
645:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_9
|
645:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @arg @ref LL_EXTI_LINE_9
|
||||||
@ -1198,7 +1198,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
699:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @note Please check each device line mapping for EXTI Line availability
|
699:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @note Please check each device line mapping for EXTI Line availability
|
||||||
700:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @retval None
|
700:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** * @retval None
|
||||||
701:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** */
|
701:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** */
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 21
|
ARM GAS /tmp/ccf8Vjfd.s page 21
|
||||||
|
|
||||||
|
|
||||||
702:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** __STATIC_INLINE void LL_EXTI_DisableFallingTrig_0_31(uint32_t ExtiLine)
|
702:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h **** __STATIC_INLINE void LL_EXTI_DisableFallingTrig_0_31(uint32_t ExtiLine)
|
||||||
@ -1258,7 +1258,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
577:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h ****
|
577:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h ****
|
||||||
300 .loc 2 577 3 view .LVU79
|
300 .loc 2 577 3 view .LVU79
|
||||||
301 008a 124A ldr r2, .L18
|
301 008a 124A ldr r2, .L18
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 22
|
ARM GAS /tmp/ccf8Vjfd.s page 22
|
||||||
|
|
||||||
|
|
||||||
302 008c 9168 ldr r1, [r2, #8]
|
302 008c 9168 ldr r1, [r2, #8]
|
||||||
@ -1318,7 +1318,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
342 .loc 2 534 3 is_stmt 0 view .LVU90
|
342 .loc 2 534 3 is_stmt 0 view .LVU90
|
||||||
343 00a6 9160 str r1, [r2, #8]
|
343 00a6 9160 str r1, [r2, #8]
|
||||||
344 .LVL38:
|
344 .LVL38:
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 23
|
ARM GAS /tmp/ccf8Vjfd.s page 23
|
||||||
|
|
||||||
|
|
||||||
534:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h ****
|
534:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h ****
|
||||||
@ -1378,7 +1378,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
377 00b6 1C68 ldr r4, [r3]
|
377 00b6 1C68 ldr r4, [r3]
|
||||||
378 00b8 21EA0401 bic r1, r1, r4
|
378 00b8 21EA0401 bic r1, r1, r4
|
||||||
379 00bc 1160 str r1, [r2]
|
379 00bc 1160 str r1, [r2]
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 24
|
ARM GAS /tmp/ccf8Vjfd.s page 24
|
||||||
|
|
||||||
|
|
||||||
380 .LVL43:
|
380 .LVL43:
|
||||||
@ -1438,7 +1438,7 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
425 .align 1
|
425 .align 1
|
||||||
426 .global LL_EXTI_StructInit
|
426 .global LL_EXTI_StructInit
|
||||||
427 .syntax unified
|
427 .syntax unified
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 25
|
ARM GAS /tmp/ccf8Vjfd.s page 25
|
||||||
|
|
||||||
|
|
||||||
428 .thumb
|
428 .thumb
|
||||||
@ -1488,18 +1488,18 @@ ARM GAS /tmp/ccp9HNtD.s page 1
|
|||||||
461 .file 3 "/usr/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h"
|
461 .file 3 "/usr/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h"
|
||||||
462 .file 4 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f767xx.h"
|
462 .file 4 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f767xx.h"
|
||||||
463 .file 5 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h"
|
463 .file 5 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h"
|
||||||
ARM GAS /tmp/ccp9HNtD.s page 26
|
ARM GAS /tmp/ccf8Vjfd.s page 26
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 stm32f7xx_ll_exti.c
|
*ABS*:0000000000000000 stm32f7xx_ll_exti.c
|
||||||
/tmp/ccp9HNtD.s:17 .text.LL_EXTI_DeInit:0000000000000000 $t
|
/tmp/ccf8Vjfd.s:17 .text.LL_EXTI_DeInit:0000000000000000 $t
|
||||||
/tmp/ccp9HNtD.s:25 .text.LL_EXTI_DeInit:0000000000000000 LL_EXTI_DeInit
|
/tmp/ccf8Vjfd.s:25 .text.LL_EXTI_DeInit:0000000000000000 LL_EXTI_DeInit
|
||||||
/tmp/ccp9HNtD.s:54 .text.LL_EXTI_DeInit:0000000000000018 $d
|
/tmp/ccf8Vjfd.s:54 .text.LL_EXTI_DeInit:0000000000000018 $d
|
||||||
/tmp/ccp9HNtD.s:59 .text.LL_EXTI_Init:0000000000000000 $t
|
/tmp/ccf8Vjfd.s:59 .text.LL_EXTI_Init:0000000000000000 $t
|
||||||
/tmp/ccp9HNtD.s:66 .text.LL_EXTI_Init:0000000000000000 LL_EXTI_Init
|
/tmp/ccf8Vjfd.s:66 .text.LL_EXTI_Init:0000000000000000 LL_EXTI_Init
|
||||||
/tmp/ccp9HNtD.s:420 .text.LL_EXTI_Init:00000000000000d4 $d
|
/tmp/ccf8Vjfd.s:420 .text.LL_EXTI_Init:00000000000000d4 $d
|
||||||
/tmp/ccp9HNtD.s:425 .text.LL_EXTI_StructInit:0000000000000000 $t
|
/tmp/ccf8Vjfd.s:425 .text.LL_EXTI_StructInit:0000000000000000 $t
|
||||||
/tmp/ccp9HNtD.s:432 .text.LL_EXTI_StructInit:0000000000000000 LL_EXTI_StructInit
|
/tmp/ccf8Vjfd.s:432 .text.LL_EXTI_StructInit:0000000000000000 LL_EXTI_StructInit
|
||||||
|
|
||||||
NO UNDEFINED SYMBOLS
|
NO UNDEFINED SYMBOLS
|
||||||
|
|||||||
Binary file not shown.
@ -31,6 +31,8 @@ build/stm32f7xx_ll_gpio.o: \
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h \
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h:
|
||||||
Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h:
|
Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h:
|
||||||
@ -65,4 +67,6 @@ Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h:
|
|||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
|
||||||
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
|
||||||
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h:
|
Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARM GAS /tmp/cclMsPT1.s page 1
|
ARM GAS /tmp/ccHHpY66.s page 1
|
||||||
|
|
||||||
|
|
||||||
1 .cpu cortex-m7
|
1 .cpu cortex-m7
|
||||||
@ -58,7 +58,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
28:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c ****
|
28:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c ****
|
||||||
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** /** @addtogroup STM32F7xx_LL_Driver
|
29:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** /** @addtogroup STM32F7xx_LL_Driver
|
||||||
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** * @{
|
30:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** * @{
|
||||||
ARM GAS /tmp/cclMsPT1.s page 2
|
ARM GAS /tmp/ccHHpY66.s page 2
|
||||||
|
|
||||||
|
|
||||||
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** */
|
31:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** */
|
||||||
@ -118,7 +118,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
85:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** /* Private function prototypes -----------------------------------------------*/
|
85:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** /* Private function prototypes -----------------------------------------------*/
|
||||||
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c ****
|
86:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c ****
|
||||||
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** /* Exported functions --------------------------------------------------------*/
|
87:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** /* Exported functions --------------------------------------------------------*/
|
||||||
ARM GAS /tmp/cclMsPT1.s page 3
|
ARM GAS /tmp/ccHHpY66.s page 3
|
||||||
|
|
||||||
|
|
||||||
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** /** @addtogroup GPIO_LL_Exported_Functions
|
88:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** /** @addtogroup GPIO_LL_Exported_Functions
|
||||||
@ -178,7 +178,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
49 000e 9842 cmp r0, r3
|
49 000e 9842 cmp r0, r3
|
||||||
50 0010 31D0 beq .L16
|
50 0010 31D0 beq .L16
|
||||||
122:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** {
|
122:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** {
|
||||||
ARM GAS /tmp/cclMsPT1.s page 4
|
ARM GAS /tmp/ccHHpY66.s page 4
|
||||||
|
|
||||||
|
|
||||||
123:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** LL_AHB1_GRP1_ForceReset(LL_AHB1_GRP1_PERIPH_GPIOC);
|
123:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** LL_AHB1_GRP1_ForceReset(LL_AHB1_GRP1_PERIPH_GPIOC);
|
||||||
@ -238,7 +238,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
72 .loc 1 155 11 is_stmt 0 view .LVU18
|
72 .loc 1 155 11 is_stmt 0 view .LVU18
|
||||||
73 002a 504B ldr r3, .L25+28
|
73 002a 504B ldr r3, .L25+28
|
||||||
74 002c 9842 cmp r0, r3
|
74 002c 9842 cmp r0, r3
|
||||||
ARM GAS /tmp/cclMsPT1.s page 5
|
ARM GAS /tmp/ccHHpY66.s page 5
|
||||||
|
|
||||||
|
|
||||||
75 002e 5ED0 beq .L21
|
75 002e 5ED0 beq .L21
|
||||||
@ -298,7 +298,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
96 0044 7047 bx lr
|
96 0044 7047 bx lr
|
||||||
97 .LVL2:
|
97 .LVL2:
|
||||||
98 .L14:
|
98 .L14:
|
||||||
ARM GAS /tmp/cclMsPT1.s page 6
|
ARM GAS /tmp/ccHHpY66.s page 6
|
||||||
|
|
||||||
|
|
||||||
113:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** LL_AHB1_GRP1_ReleaseReset(LL_AHB1_GRP1_PERIPH_GPIOA);
|
113:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** LL_AHB1_GRP1_ReleaseReset(LL_AHB1_GRP1_PERIPH_GPIOA);
|
||||||
@ -358,7 +358,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
50:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #if defined(RCC)
|
50:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #if defined(RCC)
|
||||||
51:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h ****
|
51:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h ****
|
||||||
52:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** /** @defgroup BUS_LL BUS
|
52:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** /** @defgroup BUS_LL BUS
|
||||||
ARM GAS /tmp/cclMsPT1.s page 7
|
ARM GAS /tmp/ccHHpY66.s page 7
|
||||||
|
|
||||||
|
|
||||||
53:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * @{
|
53:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * @{
|
||||||
@ -418,7 +418,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
107:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** */
|
107:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** */
|
||||||
108:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h ****
|
108:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h ****
|
||||||
109:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** /** @defgroup BUS_LL_EC_AHB2_GRP1_PERIPH AHB2 GRP1 PERIPH
|
109:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** /** @defgroup BUS_LL_EC_AHB2_GRP1_PERIPH AHB2 GRP1 PERIPH
|
||||||
ARM GAS /tmp/cclMsPT1.s page 8
|
ARM GAS /tmp/ccHHpY66.s page 8
|
||||||
|
|
||||||
|
|
||||||
110:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * @{
|
110:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * @{
|
||||||
@ -478,7 +478,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
164:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB1_GRP1_PERIPH_USART2 RCC_APB1ENR_USART2EN
|
164:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB1_GRP1_PERIPH_USART2 RCC_APB1ENR_USART2EN
|
||||||
165:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB1_GRP1_PERIPH_USART3 RCC_APB1ENR_USART3EN
|
165:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB1_GRP1_PERIPH_USART3 RCC_APB1ENR_USART3EN
|
||||||
166:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB1_GRP1_PERIPH_UART4 RCC_APB1ENR_UART4EN
|
166:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB1_GRP1_PERIPH_UART4 RCC_APB1ENR_UART4EN
|
||||||
ARM GAS /tmp/cclMsPT1.s page 9
|
ARM GAS /tmp/ccHHpY66.s page 9
|
||||||
|
|
||||||
|
|
||||||
167:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB1_GRP1_PERIPH_UART5 RCC_APB1ENR_UART5EN
|
167:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB1_GRP1_PERIPH_UART5 RCC_APB1ENR_UART5EN
|
||||||
@ -538,7 +538,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
221:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB2_GRP1_PERIPH_SAI2 RCC_APB2ENR_SAI2EN
|
221:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB2_GRP1_PERIPH_SAI2 RCC_APB2ENR_SAI2EN
|
||||||
222:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #if defined(LTDC)
|
222:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #if defined(LTDC)
|
||||||
223:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB2_GRP1_PERIPH_LTDC RCC_APB2ENR_LTDCEN
|
223:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #define LL_APB2_GRP1_PERIPH_LTDC RCC_APB2ENR_LTDCEN
|
||||||
ARM GAS /tmp/cclMsPT1.s page 10
|
ARM GAS /tmp/ccHHpY66.s page 10
|
||||||
|
|
||||||
|
|
||||||
224:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #endif /* LTDC */
|
224:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** #endif /* LTDC */
|
||||||
@ -598,7 +598,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
278:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR ETHMACPTPEN LL_AHB1_GRP1_EnableClock\n
|
278:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR ETHMACPTPEN LL_AHB1_GRP1_EnableClock\n
|
||||||
279:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR OTGHSEN LL_AHB1_GRP1_EnableClock\n
|
279:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR OTGHSEN LL_AHB1_GRP1_EnableClock\n
|
||||||
280:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR OTGHSULPIEN LL_AHB1_GRP1_EnableClock
|
280:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR OTGHSULPIEN LL_AHB1_GRP1_EnableClock
|
||||||
ARM GAS /tmp/cclMsPT1.s page 11
|
ARM GAS /tmp/ccHHpY66.s page 11
|
||||||
|
|
||||||
|
|
||||||
281:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * @param Periphs This parameter can be a combination of the following values:
|
281:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * @param Periphs This parameter can be a combination of the following values:
|
||||||
@ -658,7 +658,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
335:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR DMA2EN LL_AHB1_GRP1_IsEnabledClock\n
|
335:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR DMA2EN LL_AHB1_GRP1_IsEnabledClock\n
|
||||||
336:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR DMA2DEN LL_AHB1_GRP1_IsEnabledClock\n
|
336:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR DMA2DEN LL_AHB1_GRP1_IsEnabledClock\n
|
||||||
337:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR ETHMACEN LL_AHB1_GRP1_IsEnabledClock\n
|
337:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR ETHMACEN LL_AHB1_GRP1_IsEnabledClock\n
|
||||||
ARM GAS /tmp/cclMsPT1.s page 12
|
ARM GAS /tmp/ccHHpY66.s page 12
|
||||||
|
|
||||||
|
|
||||||
338:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR ETHMACTXEN LL_AHB1_GRP1_IsEnabledClock\n
|
338:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR ETHMACTXEN LL_AHB1_GRP1_IsEnabledClock\n
|
||||||
@ -718,7 +718,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
392:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR DMA1EN LL_AHB1_GRP1_DisableClock\n
|
392:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR DMA1EN LL_AHB1_GRP1_DisableClock\n
|
||||||
393:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR DMA2EN LL_AHB1_GRP1_DisableClock\n
|
393:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR DMA2EN LL_AHB1_GRP1_DisableClock\n
|
||||||
394:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR DMA2DEN LL_AHB1_GRP1_DisableClock\n
|
394:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR DMA2DEN LL_AHB1_GRP1_DisableClock\n
|
||||||
ARM GAS /tmp/cclMsPT1.s page 13
|
ARM GAS /tmp/ccHHpY66.s page 13
|
||||||
|
|
||||||
|
|
||||||
395:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR ETHMACEN LL_AHB1_GRP1_DisableClock\n
|
395:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1ENR ETHMACEN LL_AHB1_GRP1_DisableClock\n
|
||||||
@ -778,7 +778,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
449:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR DMA2RST LL_AHB1_GRP1_ForceReset\n
|
449:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR DMA2RST LL_AHB1_GRP1_ForceReset\n
|
||||||
450:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR DMA2DRST LL_AHB1_GRP1_ForceReset\n
|
450:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR DMA2DRST LL_AHB1_GRP1_ForceReset\n
|
||||||
451:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR ETHMACRST LL_AHB1_GRP1_ForceReset\n
|
451:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR ETHMACRST LL_AHB1_GRP1_ForceReset\n
|
||||||
ARM GAS /tmp/cclMsPT1.s page 14
|
ARM GAS /tmp/ccHHpY66.s page 14
|
||||||
|
|
||||||
|
|
||||||
452:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR OTGHSRST LL_AHB1_GRP1_ForceReset
|
452:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR OTGHSRST LL_AHB1_GRP1_ForceReset
|
||||||
@ -838,7 +838,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
491:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR GPIOIRST LL_AHB1_GRP1_ReleaseReset\n
|
491:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR GPIOIRST LL_AHB1_GRP1_ReleaseReset\n
|
||||||
492:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR GPIOJRST LL_AHB1_GRP1_ReleaseReset\n
|
492:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR GPIOJRST LL_AHB1_GRP1_ReleaseReset\n
|
||||||
493:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR GPIOKRST LL_AHB1_GRP1_ReleaseReset\n
|
493:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR GPIOKRST LL_AHB1_GRP1_ReleaseReset\n
|
||||||
ARM GAS /tmp/cclMsPT1.s page 15
|
ARM GAS /tmp/ccHHpY66.s page 15
|
||||||
|
|
||||||
|
|
||||||
494:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR CRCRST LL_AHB1_GRP1_ReleaseReset\n
|
494:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** * AHB1RSTR CRCRST LL_AHB1_GRP1_ReleaseReset\n
|
||||||
@ -898,7 +898,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
118:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** LL_AHB1_GRP1_ReleaseReset(LL_AHB1_GRP1_PERIPH_GPIOB);
|
118:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** LL_AHB1_GRP1_ReleaseReset(LL_AHB1_GRP1_PERIPH_GPIOB);
|
||||||
137 .loc 1 118 5 is_stmt 1 view .LVU38
|
137 .loc 1 118 5 is_stmt 1 view .LVU38
|
||||||
138 .LBB82:
|
138 .LBB82:
|
||||||
ARM GAS /tmp/cclMsPT1.s page 16
|
ARM GAS /tmp/ccHHpY66.s page 16
|
||||||
|
|
||||||
|
|
||||||
139 .LBI82:
|
139 .LBI82:
|
||||||
@ -958,7 +958,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
183 0080 1A61 str r2, [r3, #16]
|
183 0080 1A61 str r2, [r3, #16]
|
||||||
184 .LVL9:
|
184 .LVL9:
|
||||||
478:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** }
|
478:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** }
|
||||||
ARM GAS /tmp/cclMsPT1.s page 17
|
ARM GAS /tmp/ccHHpY66.s page 17
|
||||||
|
|
||||||
|
|
||||||
185 .loc 2 478 3 is_stmt 0 view .LVU51
|
185 .loc 2 478 3 is_stmt 0 view .LVU51
|
||||||
@ -1018,7 +1018,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
229 .LBB97:
|
229 .LBB97:
|
||||||
525:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** }
|
525:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** }
|
||||||
230 .loc 2 525 3 view .LVU64
|
230 .loc 2 525 3 view .LVU64
|
||||||
ARM GAS /tmp/cclMsPT1.s page 18
|
ARM GAS /tmp/ccHHpY66.s page 18
|
||||||
|
|
||||||
|
|
||||||
231 009a 1A69 ldr r2, [r3, #16]
|
231 009a 1A69 ldr r2, [r3, #16]
|
||||||
@ -1078,7 +1078,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
276 .LBB105:
|
276 .LBB105:
|
||||||
277 .LBB104:
|
277 .LBB104:
|
||||||
278 .loc 2 526 1 view .LVU76
|
278 .loc 2 526 1 view .LVU76
|
||||||
ARM GAS /tmp/cclMsPT1.s page 19
|
ARM GAS /tmp/ccHHpY66.s page 19
|
||||||
|
|
||||||
|
|
||||||
279 00bc 7047 bx lr
|
279 00bc 7047 bx lr
|
||||||
@ -1138,7 +1138,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
324 .LBI112:
|
324 .LBI112:
|
||||||
476:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** {
|
476:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h **** {
|
||||||
325 .loc 2 476 22 view .LVU89
|
325 .loc 2 476 22 view .LVU89
|
||||||
ARM GAS /tmp/cclMsPT1.s page 20
|
ARM GAS /tmp/ccHHpY66.s page 20
|
||||||
|
|
||||||
|
|
||||||
326 .LBB113:
|
326 .LBB113:
|
||||||
@ -1198,7 +1198,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
370 .loc 2 478 3 is_stmt 0 view .LVU101
|
370 .loc 2 478 3 is_stmt 0 view .LVU101
|
||||||
371 .LBE119:
|
371 .LBE119:
|
||||||
372 .LBE118:
|
372 .LBE118:
|
||||||
ARM GAS /tmp/cclMsPT1.s page 21
|
ARM GAS /tmp/ccHHpY66.s page 21
|
||||||
|
|
||||||
|
|
||||||
158:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** }
|
158:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** }
|
||||||
@ -1258,7 +1258,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
416 0112 1A69 ldr r2, [r3, #16]
|
416 0112 1A69 ldr r2, [r3, #16]
|
||||||
417 0114 22F48072 bic r2, r2, #256
|
417 0114 22F48072 bic r2, r2, #256
|
||||||
418 0118 1A61 str r2, [r3, #16]
|
418 0118 1A61 str r2, [r3, #16]
|
||||||
ARM GAS /tmp/cclMsPT1.s page 22
|
ARM GAS /tmp/ccHHpY66.s page 22
|
||||||
|
|
||||||
|
|
||||||
419 .LBE127:
|
419 .LBE127:
|
||||||
@ -1318,7 +1318,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
464 0134 7047 bx lr
|
464 0134 7047 bx lr
|
||||||
465 .LVL32:
|
465 .LVL32:
|
||||||
466 .L24:
|
466 .L24:
|
||||||
ARM GAS /tmp/cclMsPT1.s page 23
|
ARM GAS /tmp/ccHHpY66.s page 23
|
||||||
|
|
||||||
|
|
||||||
467 .loc 2 526 1 view .LVU127
|
467 .loc 2 526 1 view .LVU127
|
||||||
@ -1378,7 +1378,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
513 0170 00200240 .word 1073881088
|
513 0170 00200240 .word 1073881088
|
||||||
514 0174 00240240 .word 1073882112
|
514 0174 00240240 .word 1073882112
|
||||||
515 0178 00280240 .word 1073883136
|
515 0178 00280240 .word 1073883136
|
||||||
ARM GAS /tmp/cclMsPT1.s page 24
|
ARM GAS /tmp/ccHHpY66.s page 24
|
||||||
|
|
||||||
|
|
||||||
516 .LBE140:
|
516 .LBE140:
|
||||||
@ -1438,7 +1438,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
548 .file 3 "Drivers/CMSIS/Include/cmsis_gcc.h"
|
548 .file 3 "Drivers/CMSIS/Include/cmsis_gcc.h"
|
||||||
1:Drivers/CMSIS/Include/cmsis_gcc.h **** /**************************************************************************//**
|
1:Drivers/CMSIS/Include/cmsis_gcc.h **** /**************************************************************************//**
|
||||||
2:Drivers/CMSIS/Include/cmsis_gcc.h **** * @file cmsis_gcc.h
|
2:Drivers/CMSIS/Include/cmsis_gcc.h **** * @file cmsis_gcc.h
|
||||||
ARM GAS /tmp/cclMsPT1.s page 25
|
ARM GAS /tmp/ccHHpY66.s page 25
|
||||||
|
|
||||||
|
|
||||||
3:Drivers/CMSIS/Include/cmsis_gcc.h **** * @brief CMSIS compiler GCC header file
|
3:Drivers/CMSIS/Include/cmsis_gcc.h **** * @brief CMSIS compiler GCC header file
|
||||||
@ -1498,7 +1498,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
57:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
57:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
||||||
58:Drivers/CMSIS/Include/cmsis_gcc.h **** #ifndef __WEAK
|
58:Drivers/CMSIS/Include/cmsis_gcc.h **** #ifndef __WEAK
|
||||||
59:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __WEAK __attribute__((weak))
|
59:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __WEAK __attribute__((weak))
|
||||||
ARM GAS /tmp/cclMsPT1.s page 26
|
ARM GAS /tmp/ccHHpY66.s page 26
|
||||||
|
|
||||||
|
|
||||||
60:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
60:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
||||||
@ -1558,7 +1558,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
114:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __RESTRICT __restrict
|
114:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __RESTRICT __restrict
|
||||||
115:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
115:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
||||||
116:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
116:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
ARM GAS /tmp/cclMsPT1.s page 27
|
ARM GAS /tmp/ccHHpY66.s page 27
|
||||||
|
|
||||||
|
|
||||||
117:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
117:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
@ -1618,7 +1618,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
171:Drivers/CMSIS/Include/cmsis_gcc.h **** return(result);
|
171:Drivers/CMSIS/Include/cmsis_gcc.h **** return(result);
|
||||||
172:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
172:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
||||||
173:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
173:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
||||||
ARM GAS /tmp/cclMsPT1.s page 28
|
ARM GAS /tmp/ccHHpY66.s page 28
|
||||||
|
|
||||||
|
|
||||||
174:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
174:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
@ -1678,7 +1678,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
228:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
228:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
||||||
229:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Get xPSR Register
|
229:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Get xPSR Register
|
||||||
230:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the content of the xPSR Register.
|
230:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the content of the xPSR Register.
|
||||||
ARM GAS /tmp/cclMsPT1.s page 29
|
ARM GAS /tmp/ccHHpY66.s page 29
|
||||||
|
|
||||||
|
|
||||||
231:Drivers/CMSIS/Include/cmsis_gcc.h **** \return xPSR Register value
|
231:Drivers/CMSIS/Include/cmsis_gcc.h **** \return xPSR Register value
|
||||||
@ -1738,7 +1738,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
285:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Set Process Stack Pointer (non-secure)
|
285:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Set Process Stack Pointer (non-secure)
|
||||||
286:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Assigns the given value to the non-secure Process Stack Pointer (PSP) when in secure sta
|
286:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Assigns the given value to the non-secure Process Stack Pointer (PSP) when in secure sta
|
||||||
287:Drivers/CMSIS/Include/cmsis_gcc.h **** \param [in] topOfProcStack Process Stack Pointer value to set
|
287:Drivers/CMSIS/Include/cmsis_gcc.h **** \param [in] topOfProcStack Process Stack Pointer value to set
|
||||||
ARM GAS /tmp/cclMsPT1.s page 30
|
ARM GAS /tmp/ccHHpY66.s page 30
|
||||||
|
|
||||||
|
|
||||||
288:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
288:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
@ -1798,7 +1798,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
342:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
342:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
343:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE void __TZ_set_MSP_NS(uint32_t topOfMainStack)
|
343:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE void __TZ_set_MSP_NS(uint32_t topOfMainStack)
|
||||||
344:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
344:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
ARM GAS /tmp/cclMsPT1.s page 31
|
ARM GAS /tmp/ccHHpY66.s page 31
|
||||||
|
|
||||||
|
|
||||||
345:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MSR msp_ns, %0" : : "r" (topOfMainStack) : );
|
345:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MSR msp_ns, %0" : : "r" (topOfMainStack) : );
|
||||||
@ -1858,7 +1858,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
399:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
399:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
||||||
400:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
400:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
401:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, primask_ns" : "=r" (result) :: "memory");
|
401:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, primask_ns" : "=r" (result) :: "memory");
|
||||||
ARM GAS /tmp/cclMsPT1.s page 32
|
ARM GAS /tmp/ccHHpY66.s page 32
|
||||||
|
|
||||||
|
|
||||||
402:Drivers/CMSIS/Include/cmsis_gcc.h **** return(result);
|
402:Drivers/CMSIS/Include/cmsis_gcc.h **** return(result);
|
||||||
@ -1918,7 +1918,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
456:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
456:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
||||||
457:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Get Base Priority
|
457:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Get Base Priority
|
||||||
458:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the current value of the Base Priority register.
|
458:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Returns the current value of the Base Priority register.
|
||||||
ARM GAS /tmp/cclMsPT1.s page 33
|
ARM GAS /tmp/ccHHpY66.s page 33
|
||||||
|
|
||||||
|
|
||||||
459:Drivers/CMSIS/Include/cmsis_gcc.h **** \return Base Priority register value
|
459:Drivers/CMSIS/Include/cmsis_gcc.h **** \return Base Priority register value
|
||||||
@ -1978,7 +1978,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
513:Drivers/CMSIS/Include/cmsis_gcc.h **** or the new value increases the BASEPRI priority level.
|
513:Drivers/CMSIS/Include/cmsis_gcc.h **** or the new value increases the BASEPRI priority level.
|
||||||
514:Drivers/CMSIS/Include/cmsis_gcc.h **** \param [in] basePri Base Priority value to set
|
514:Drivers/CMSIS/Include/cmsis_gcc.h **** \param [in] basePri Base Priority value to set
|
||||||
515:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
515:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
ARM GAS /tmp/cclMsPT1.s page 34
|
ARM GAS /tmp/ccHHpY66.s page 34
|
||||||
|
|
||||||
|
|
||||||
516:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE void __set_BASEPRI_MAX(uint32_t basePri)
|
516:Drivers/CMSIS/Include/cmsis_gcc.h **** __STATIC_FORCEINLINE void __set_BASEPRI_MAX(uint32_t basePri)
|
||||||
@ -2038,7 +2038,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
570:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
570:Drivers/CMSIS/Include/cmsis_gcc.h **** {
|
||||||
571:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MSR faultmask_ns, %0" : : "r" (faultMask) : "memory");
|
571:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MSR faultmask_ns, %0" : : "r" (faultMask) : "memory");
|
||||||
572:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
572:Drivers/CMSIS/Include/cmsis_gcc.h **** }
|
||||||
ARM GAS /tmp/cclMsPT1.s page 35
|
ARM GAS /tmp/ccHHpY66.s page 35
|
||||||
|
|
||||||
|
|
||||||
573:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
573:Drivers/CMSIS/Include/cmsis_gcc.h **** #endif
|
||||||
@ -2098,7 +2098,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
627:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
627:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
628:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
628:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
||||||
629:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Set Process Stack Pointer Limit
|
629:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Set Process Stack Pointer Limit
|
||||||
ARM GAS /tmp/cclMsPT1.s page 36
|
ARM GAS /tmp/ccHHpY66.s page 36
|
||||||
|
|
||||||
|
|
||||||
630:Drivers/CMSIS/Include/cmsis_gcc.h **** Devices without ARMv8-M Main Extensions (i.e. Cortex-M23) lack the non-secure
|
630:Drivers/CMSIS/Include/cmsis_gcc.h **** Devices without ARMv8-M Main Extensions (i.e. Cortex-M23) lack the non-secure
|
||||||
@ -2158,7 +2158,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
684:Drivers/CMSIS/Include/cmsis_gcc.h **** return 0U;
|
684:Drivers/CMSIS/Include/cmsis_gcc.h **** return 0U;
|
||||||
685:Drivers/CMSIS/Include/cmsis_gcc.h **** #else
|
685:Drivers/CMSIS/Include/cmsis_gcc.h **** #else
|
||||||
686:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
686:Drivers/CMSIS/Include/cmsis_gcc.h **** uint32_t result;
|
||||||
ARM GAS /tmp/cclMsPT1.s page 37
|
ARM GAS /tmp/ccHHpY66.s page 37
|
||||||
|
|
||||||
|
|
||||||
687:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, msplim" : "=r" (result) );
|
687:Drivers/CMSIS/Include/cmsis_gcc.h **** __ASM volatile ("MRS %0, msplim" : "=r" (result) );
|
||||||
@ -2218,7 +2218,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
741:Drivers/CMSIS/Include/cmsis_gcc.h **** Stack Pointer Limit register hence the write is silently ignored.
|
741:Drivers/CMSIS/Include/cmsis_gcc.h **** Stack Pointer Limit register hence the write is silently ignored.
|
||||||
742:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
742:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
743:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Assigns the given value to the non-secure Main Stack Pointer Limit (MSPLIM) when in secu
|
743:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Assigns the given value to the non-secure Main Stack Pointer Limit (MSPLIM) when in secu
|
||||||
ARM GAS /tmp/cclMsPT1.s page 38
|
ARM GAS /tmp/ccHHpY66.s page 38
|
||||||
|
|
||||||
|
|
||||||
744:Drivers/CMSIS/Include/cmsis_gcc.h **** \param [in] MainStackPtrLimit Main Stack Pointer value to set
|
744:Drivers/CMSIS/Include/cmsis_gcc.h **** \param [in] MainStackPtrLimit Main Stack Pointer value to set
|
||||||
@ -2278,7 +2278,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
798:Drivers/CMSIS/Include/cmsis_gcc.h **** // || (__GNUC__ > 7) || (__GNUC__ == 7 && __GNUC_MINOR__ >= 2)
|
798:Drivers/CMSIS/Include/cmsis_gcc.h **** // || (__GNUC__ > 7) || (__GNUC__ == 7 && __GNUC_MINOR__ >= 2)
|
||||||
799:Drivers/CMSIS/Include/cmsis_gcc.h **** /* see https://gcc.gnu.org/ml/gcc-patches/2017-04/msg00443.html */
|
799:Drivers/CMSIS/Include/cmsis_gcc.h **** /* see https://gcc.gnu.org/ml/gcc-patches/2017-04/msg00443.html */
|
||||||
800:Drivers/CMSIS/Include/cmsis_gcc.h **** __builtin_arm_set_fpscr(fpscr);
|
800:Drivers/CMSIS/Include/cmsis_gcc.h **** __builtin_arm_set_fpscr(fpscr);
|
||||||
ARM GAS /tmp/cclMsPT1.s page 39
|
ARM GAS /tmp/ccHHpY66.s page 39
|
||||||
|
|
||||||
|
|
||||||
801:Drivers/CMSIS/Include/cmsis_gcc.h **** #else
|
801:Drivers/CMSIS/Include/cmsis_gcc.h **** #else
|
||||||
@ -2338,7 +2338,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
855:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Send Event is a hint instruction. It causes an event to be signaled to the CPU.
|
855:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Send Event is a hint instruction. It causes an event to be signaled to the CPU.
|
||||||
856:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
856:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
857:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __SEV() __ASM volatile ("sev")
|
857:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __SEV() __ASM volatile ("sev")
|
||||||
ARM GAS /tmp/cclMsPT1.s page 40
|
ARM GAS /tmp/ccHHpY66.s page 40
|
||||||
|
|
||||||
|
|
||||||
858:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
858:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
@ -2398,7 +2398,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
912:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
912:Drivers/CMSIS/Include/cmsis_gcc.h ****
|
||||||
913:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
913:Drivers/CMSIS/Include/cmsis_gcc.h **** /**
|
||||||
914:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Reverse byte order (16 bit)
|
914:Drivers/CMSIS/Include/cmsis_gcc.h **** \brief Reverse byte order (16 bit)
|
||||||
ARM GAS /tmp/cclMsPT1.s page 41
|
ARM GAS /tmp/ccHHpY66.s page 41
|
||||||
|
|
||||||
|
|
||||||
915:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Reverses the byte order within each halfword of a word. For example, 0x12345678 becomes
|
915:Drivers/CMSIS/Include/cmsis_gcc.h **** \details Reverses the byte order within each halfword of a word. For example, 0x12345678 becomes
|
||||||
@ -2458,7 +2458,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
969:Drivers/CMSIS/Include/cmsis_gcc.h **** \param [in] value is ignored by the processor.
|
969:Drivers/CMSIS/Include/cmsis_gcc.h **** \param [in] value is ignored by the processor.
|
||||||
970:Drivers/CMSIS/Include/cmsis_gcc.h **** If required, a debugger can use it to store additional information about the break
|
970:Drivers/CMSIS/Include/cmsis_gcc.h **** If required, a debugger can use it to store additional information about the break
|
||||||
971:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
971:Drivers/CMSIS/Include/cmsis_gcc.h **** */
|
||||||
ARM GAS /tmp/cclMsPT1.s page 42
|
ARM GAS /tmp/ccHHpY66.s page 42
|
||||||
|
|
||||||
|
|
||||||
972:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __BKPT(value) __ASM volatile ("bkpt "#value)
|
972:Drivers/CMSIS/Include/cmsis_gcc.h **** #define __BKPT(value) __ASM volatile ("bkpt "#value)
|
||||||
@ -2518,7 +2518,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
570 .LVL39:
|
570 .LVL39:
|
||||||
571 .L43:
|
571 .L43:
|
||||||
572 .LCFI0:
|
572 .LCFI0:
|
||||||
ARM GAS /tmp/cclMsPT1.s page 43
|
ARM GAS /tmp/ccHHpY66.s page 43
|
||||||
|
|
||||||
|
|
||||||
573 .cfi_def_cfa_offset 16
|
573 .cfi_def_cfa_offset 16
|
||||||
@ -2578,7 +2578,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
30:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** /** @addtogroup STM32F7xx_LL_Driver
|
30:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** /** @addtogroup STM32F7xx_LL_Driver
|
||||||
31:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @{
|
31:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @{
|
||||||
32:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** */
|
32:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** */
|
||||||
ARM GAS /tmp/cclMsPT1.s page 44
|
ARM GAS /tmp/ccHHpY66.s page 44
|
||||||
|
|
||||||
|
|
||||||
33:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h ****
|
33:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h ****
|
||||||
@ -2638,7 +2638,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
87:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h ****
|
87:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h ****
|
||||||
88:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** uint32_t Alternate; /*!< Specifies the Peripheral to be connected to the selected pins.
|
88:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** uint32_t Alternate; /*!< Specifies the Peripheral to be connected to the selected pins.
|
||||||
89:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** This parameter can be a value of @ref GPIO_LL_EC_AF.
|
89:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** This parameter can be a value of @ref GPIO_LL_EC_AF.
|
||||||
ARM GAS /tmp/cclMsPT1.s page 45
|
ARM GAS /tmp/ccHHpY66.s page 45
|
||||||
|
|
||||||
|
|
||||||
90:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h ****
|
90:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h ****
|
||||||
@ -2698,7 +2698,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
144:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** /** @defgroup GPIO_LL_EC_OUTPUT Output Type
|
144:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** /** @defgroup GPIO_LL_EC_OUTPUT Output Type
|
||||||
145:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @{
|
145:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @{
|
||||||
146:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** */
|
146:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** */
|
||||||
ARM GAS /tmp/cclMsPT1.s page 46
|
ARM GAS /tmp/ccHHpY66.s page 46
|
||||||
|
|
||||||
|
|
||||||
147:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** #define LL_GPIO_OUTPUT_PUSHPULL (0x00000000U) /*!< Select push-pull as output type */
|
147:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** #define LL_GPIO_OUTPUT_PUSHPULL (0x00000000U) /*!< Select push-pull as output type */
|
||||||
@ -2758,7 +2758,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
201:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** /* Exported macro ------------------------------------------------------------*/
|
201:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** /* Exported macro ------------------------------------------------------------*/
|
||||||
202:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** /** @defgroup GPIO_LL_Exported_Macros GPIO Exported Macros
|
202:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** /** @defgroup GPIO_LL_Exported_Macros GPIO Exported Macros
|
||||||
203:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @{
|
203:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @{
|
||||||
ARM GAS /tmp/cclMsPT1.s page 47
|
ARM GAS /tmp/ccHHpY66.s page 47
|
||||||
|
|
||||||
|
|
||||||
204:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** */
|
204:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** */
|
||||||
@ -2818,7 +2818,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
258:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_PIN_8
|
258:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_PIN_8
|
||||||
259:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_PIN_9
|
259:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_PIN_9
|
||||||
260:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_PIN_10
|
260:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_PIN_10
|
||||||
ARM GAS /tmp/cclMsPT1.s page 48
|
ARM GAS /tmp/ccHHpY66.s page 48
|
||||||
|
|
||||||
|
|
||||||
261:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_PIN_11
|
261:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_PIN_11
|
||||||
@ -2878,7 +2878,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
315:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @note Output type as to be set when gpio pin is in output or
|
315:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @note Output type as to be set when gpio pin is in output or
|
||||||
316:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * alternate modes. Possible type are Push-pull or Open-drain.
|
316:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * alternate modes. Possible type are Push-pull or Open-drain.
|
||||||
317:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @rmtoll OTYPER OTy LL_GPIO_SetPinOutputType
|
317:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @rmtoll OTYPER OTy LL_GPIO_SetPinOutputType
|
||||||
ARM GAS /tmp/cclMsPT1.s page 49
|
ARM GAS /tmp/ccHHpY66.s page 49
|
||||||
|
|
||||||
|
|
||||||
318:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @param GPIOx GPIO Port
|
318:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @param GPIOx GPIO Port
|
||||||
@ -2938,7 +2938,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
372:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @retval Returned value can be one of the following values:
|
372:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @retval Returned value can be one of the following values:
|
||||||
373:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_OUTPUT_PUSHPULL
|
373:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_OUTPUT_PUSHPULL
|
||||||
374:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_OUTPUT_OPENDRAIN
|
374:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_OUTPUT_OPENDRAIN
|
||||||
ARM GAS /tmp/cclMsPT1.s page 50
|
ARM GAS /tmp/ccHHpY66.s page 50
|
||||||
|
|
||||||
|
|
||||||
375:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** */
|
375:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** */
|
||||||
@ -2998,7 +2998,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
595 .loc 3 988 4 view .LVU160
|
595 .loc 3 988 4 view .LVU160
|
||||||
596 .syntax unified
|
596 .syntax unified
|
||||||
597 @ 988 "Drivers/CMSIS/Include/cmsis_gcc.h" 1
|
597 @ 988 "Drivers/CMSIS/Include/cmsis_gcc.h" 1
|
||||||
ARM GAS /tmp/cclMsPT1.s page 51
|
ARM GAS /tmp/ccHHpY66.s page 51
|
||||||
|
|
||||||
|
|
||||||
598 0010 93FAA3F4 rbit r4, r3
|
598 0010 93FAA3F4 rbit r4, r3
|
||||||
@ -3058,7 +3058,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
643 0038 0C68 ldr r4, [r1]
|
643 0038 0C68 ldr r4, [r1]
|
||||||
644 003a CD68 ldr r5, [r1, #12]
|
644 003a CD68 ldr r5, [r1, #12]
|
||||||
645 .LVL46:
|
645 .LVL46:
|
||||||
ARM GAS /tmp/cclMsPT1.s page 52
|
ARM GAS /tmp/ccHHpY66.s page 52
|
||||||
|
|
||||||
|
|
||||||
646 .LBB186:
|
646 .LBB186:
|
||||||
@ -3118,7 +3118,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
680 .loc 3 1001 3 is_stmt 0 view .LVU184
|
680 .loc 3 1001 3 is_stmt 0 view .LVU184
|
||||||
681 .thumb
|
681 .thumb
|
||||||
682 .syntax unified
|
682 .syntax unified
|
||||||
ARM GAS /tmp/cclMsPT1.s page 53
|
ARM GAS /tmp/ccHHpY66.s page 53
|
||||||
|
|
||||||
|
|
||||||
683 .LBE189:
|
683 .LBE189:
|
||||||
@ -3178,7 +3178,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
456:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** /**
|
456:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** /**
|
||||||
457:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @brief Configure gpio pull-up or pull-down for a dedicated pin on a dedicated port.
|
457:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @brief Configure gpio pull-up or pull-down for a dedicated pin on a dedicated port.
|
||||||
458:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @note Warning: only one pin can be passed as parameter.
|
458:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @note Warning: only one pin can be passed as parameter.
|
||||||
ARM GAS /tmp/cclMsPT1.s page 54
|
ARM GAS /tmp/ccHHpY66.s page 54
|
||||||
|
|
||||||
|
|
||||||
459:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @rmtoll PUPDR PUPDy LL_GPIO_SetPinPull
|
459:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @rmtoll PUPDR PUPDy LL_GPIO_SetPinPull
|
||||||
@ -3238,7 +3238,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
513:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_PULL_UP
|
513:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_PULL_UP
|
||||||
514:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_PULL_DOWN
|
514:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_PULL_DOWN
|
||||||
515:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** */
|
515:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** */
|
||||||
ARM GAS /tmp/cclMsPT1.s page 55
|
ARM GAS /tmp/ccHHpY66.s page 55
|
||||||
|
|
||||||
|
|
||||||
516:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** __STATIC_INLINE uint32_t LL_GPIO_GetPinPull(GPIO_TypeDef *GPIOx, uint32_t Pin)
|
516:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** __STATIC_INLINE uint32_t LL_GPIO_GetPinPull(GPIO_TypeDef *GPIOx, uint32_t Pin)
|
||||||
@ -3298,7 +3298,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
704 .loc 3 983 3 view .LVU191
|
704 .loc 3 983 3 view .LVU191
|
||||||
988:Drivers/CMSIS/Include/cmsis_gcc.h **** #else
|
988:Drivers/CMSIS/Include/cmsis_gcc.h **** #else
|
||||||
705 .loc 3 988 4 view .LVU192
|
705 .loc 3 988 4 view .LVU192
|
||||||
ARM GAS /tmp/cclMsPT1.s page 56
|
ARM GAS /tmp/ccHHpY66.s page 56
|
||||||
|
|
||||||
|
|
||||||
706 .syntax unified
|
706 .syntax unified
|
||||||
@ -3358,7 +3358,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
250:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** else
|
250:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** else
|
||||||
251:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** {
|
251:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** {
|
||||||
252:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** LL_GPIO_SetAFPin_8_15(GPIOx, currentpin, GPIO_InitStruct->Alternate);
|
252:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** LL_GPIO_SetAFPin_8_15(GPIOx, currentpin, GPIO_InitStruct->Alternate);
|
||||||
ARM GAS /tmp/cclMsPT1.s page 57
|
ARM GAS /tmp/ccHHpY66.s page 57
|
||||||
|
|
||||||
|
|
||||||
754 .loc 1 252 11 is_stmt 1 view .LVU204
|
754 .loc 1 252 11 is_stmt 1 view .LVU204
|
||||||
@ -3418,7 +3418,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
610:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_PIN_12
|
610:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_PIN_12
|
||||||
611:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_PIN_13
|
611:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_PIN_13
|
||||||
612:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_PIN_14
|
612:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_PIN_14
|
||||||
ARM GAS /tmp/cclMsPT1.s page 58
|
ARM GAS /tmp/ccHHpY66.s page 58
|
||||||
|
|
||||||
|
|
||||||
613:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_PIN_15
|
613:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** * @arg @ref LL_GPIO_PIN_15
|
||||||
@ -3478,7 +3478,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
787 009c 25EA0E05 bic r5, r5, lr
|
787 009c 25EA0E05 bic r5, r5, lr
|
||||||
788 .LVL60:
|
788 .LVL60:
|
||||||
789 .LBB200:
|
789 .LBB200:
|
||||||
ARM GAS /tmp/cclMsPT1.s page 59
|
ARM GAS /tmp/ccHHpY66.s page 59
|
||||||
|
|
||||||
|
|
||||||
790 .LBI200:
|
790 .LBI200:
|
||||||
@ -3538,7 +3538,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
830 .cfi_restore 5
|
830 .cfi_restore 5
|
||||||
831 .cfi_restore 6
|
831 .cfi_restore 6
|
||||||
832 .cfi_restore 14
|
832 .cfi_restore 14
|
||||||
ARM GAS /tmp/cclMsPT1.s page 60
|
ARM GAS /tmp/ccHHpY66.s page 60
|
||||||
|
|
||||||
|
|
||||||
258:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** }
|
258:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c **** }
|
||||||
@ -3598,7 +3598,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
872 .L30:
|
872 .L30:
|
||||||
238:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c ****
|
238:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c ****
|
||||||
873 .loc 1 238 7 is_stmt 1 view .LVU239
|
873 .loc 1 238 7 is_stmt 1 view .LVU239
|
||||||
ARM GAS /tmp/cclMsPT1.s page 61
|
ARM GAS /tmp/ccHHpY66.s page 61
|
||||||
|
|
||||||
|
|
||||||
874 .LVL68:
|
874 .LVL68:
|
||||||
@ -3658,7 +3658,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
919 .thumb
|
919 .thumb
|
||||||
920 .syntax unified
|
920 .syntax unified
|
||||||
921 .LBE207:
|
921 .LBE207:
|
||||||
ARM GAS /tmp/cclMsPT1.s page 62
|
ARM GAS /tmp/ccHHpY66.s page 62
|
||||||
|
|
||||||
|
|
||||||
922 .LBE206:
|
922 .LBE206:
|
||||||
@ -3718,7 +3718,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
965 .syntax unified
|
965 .syntax unified
|
||||||
966 .LBE211:
|
966 .LBE211:
|
||||||
967 .LBE210:
|
967 .LBE210:
|
||||||
ARM GAS /tmp/cclMsPT1.s page 63
|
ARM GAS /tmp/ccHHpY66.s page 63
|
||||||
|
|
||||||
|
|
||||||
275:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** }
|
275:Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h **** }
|
||||||
@ -3778,7 +3778,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
1011 013c 33FA0CF2 lsrs r2, r3, ip
|
1011 013c 33FA0CF2 lsrs r2, r3, ip
|
||||||
1012 0140 B8D0 beq .L45
|
1012 0140 B8D0 beq .L45
|
||||||
218:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c ****
|
218:Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_gpio.c ****
|
||||||
ARM GAS /tmp/cclMsPT1.s page 64
|
ARM GAS /tmp/ccHHpY66.s page 64
|
||||||
|
|
||||||
|
|
||||||
1013 .loc 1 218 5 is_stmt 1 view .LVU279
|
1013 .loc 1 218 5 is_stmt 1 view .LVU279
|
||||||
@ -3838,7 +3838,7 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
1054 .cfi_startproc
|
1054 .cfi_startproc
|
||||||
1055 @ args = 0, pretend = 0, frame = 0
|
1055 @ args = 0, pretend = 0, frame = 0
|
||||||
1056 @ frame_needed = 0, uses_anonymous_args = 0
|
1056 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
ARM GAS /tmp/cclMsPT1.s page 65
|
ARM GAS /tmp/ccHHpY66.s page 65
|
||||||
|
|
||||||
|
|
||||||
1057 @ link register save eliminated.
|
1057 @ link register save eliminated.
|
||||||
@ -3880,17 +3880,17 @@ ARM GAS /tmp/cclMsPT1.s page 1
|
|||||||
1086 .file 5 "/usr/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h"
|
1086 .file 5 "/usr/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h"
|
||||||
1087 .file 6 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f767xx.h"
|
1087 .file 6 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f767xx.h"
|
||||||
1088 .file 7 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h"
|
1088 .file 7 "Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h"
|
||||||
ARM GAS /tmp/cclMsPT1.s page 66
|
ARM GAS /tmp/ccHHpY66.s page 66
|
||||||
|
|
||||||
|
|
||||||
DEFINED SYMBOLS
|
DEFINED SYMBOLS
|
||||||
*ABS*:0000000000000000 stm32f7xx_ll_gpio.c
|
*ABS*:0000000000000000 stm32f7xx_ll_gpio.c
|
||||||
/tmp/cclMsPT1.s:17 .text.LL_GPIO_DeInit:0000000000000000 $t
|
/tmp/ccHHpY66.s:17 .text.LL_GPIO_DeInit:0000000000000000 $t
|
||||||
/tmp/cclMsPT1.s:25 .text.LL_GPIO_DeInit:0000000000000000 LL_GPIO_DeInit
|
/tmp/ccHHpY66.s:25 .text.LL_GPIO_DeInit:0000000000000000 LL_GPIO_DeInit
|
||||||
/tmp/cclMsPT1.s:505 .text.LL_GPIO_DeInit:0000000000000150 $d
|
/tmp/ccHHpY66.s:505 .text.LL_GPIO_DeInit:0000000000000150 $d
|
||||||
/tmp/cclMsPT1.s:522 .text.LL_GPIO_Init:0000000000000000 $t
|
/tmp/ccHHpY66.s:522 .text.LL_GPIO_Init:0000000000000000 $t
|
||||||
/tmp/cclMsPT1.s:529 .text.LL_GPIO_Init:0000000000000000 LL_GPIO_Init
|
/tmp/ccHHpY66.s:529 .text.LL_GPIO_Init:0000000000000000 LL_GPIO_Init
|
||||||
/tmp/cclMsPT1.s:1043 .text.LL_GPIO_StructInit:0000000000000000 $t
|
/tmp/ccHHpY66.s:1043 .text.LL_GPIO_StructInit:0000000000000000 $t
|
||||||
/tmp/cclMsPT1.s:1050 .text.LL_GPIO_StructInit:0000000000000000 LL_GPIO_StructInit
|
/tmp/ccHHpY66.s:1050 .text.LL_GPIO_StructInit:0000000000000000 LL_GPIO_StructInit
|
||||||
|
|
||||||
NO UNDEFINED SYMBOLS
|
NO UNDEFINED SYMBOLS
|
||||||
|
|||||||
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user