mirror of
https://github.com/BreizhHardware/TP-STM32-CIPA3.git
synced 2026-01-19 00:27:23 +01:00
ça clignotte avec le bouton
This commit is contained in:
@@ -57,8 +57,6 @@ void Error_Handler(void);
|
||||
/* USER CODE END EFP */
|
||||
|
||||
/* Private defines -----------------------------------------------------------*/
|
||||
#define B1_Pin GPIO_PIN_13
|
||||
#define B1_GPIO_Port GPIOC
|
||||
#define USART_TX_Pin GPIO_PIN_2
|
||||
#define USART_TX_GPIO_Port GPIOA
|
||||
#define USART_RX_Pin GPIO_PIN_3
|
||||
|
||||
@@ -94,6 +94,10 @@ int main(void)
|
||||
|
||||
// Allume la led V1
|
||||
//*((uint32_t *)0x40020014) |= (1 << 5);
|
||||
|
||||
uint32_t bouton_bleu = 0;
|
||||
uint32_t led = 0;
|
||||
uint8_t v = 0;
|
||||
/* USER CODE END 2 */
|
||||
|
||||
/* Infinite loop */
|
||||
@@ -112,8 +116,31 @@ int main(void)
|
||||
*/
|
||||
|
||||
// Code V2 clignotte avec XOR
|
||||
/*
|
||||
*((uint32_t *)0x40020014) ^= (1 << 5);
|
||||
HAL_Delay(1000);
|
||||
*/
|
||||
|
||||
// Version variable
|
||||
|
||||
bouton_bleu = *(volatile uint32_t *)0x40020810;
|
||||
led = *(volatile uint32_t *)0x40020014;
|
||||
v = (bouton_bleu & (1 << 13)) >> 13;
|
||||
if(v == 0) {
|
||||
led ^= (1 << 5);
|
||||
*(volatile uint32_t *)0x40020014 = led;
|
||||
HAL_DELAY(500);
|
||||
}
|
||||
|
||||
|
||||
// Version registre
|
||||
/*
|
||||
v = (GPIOC->IDR&(1 << 13)) >> 13;
|
||||
if(v == 0) {
|
||||
GPIOA->ODR ^= (1 << 5);
|
||||
HAL_DELAY(500);
|
||||
}
|
||||
*/
|
||||
}
|
||||
/* USER CODE END 3 */
|
||||
}
|
||||
@@ -215,11 +242,11 @@ static void MX_GPIO_Init(void)
|
||||
/*Configure GPIO pin Output Level */
|
||||
HAL_GPIO_WritePin(LD2_GPIO_Port, LD2_Pin, GPIO_PIN_RESET);
|
||||
|
||||
/*Configure GPIO pin : B1_Pin */
|
||||
GPIO_InitStruct.Pin = B1_Pin;
|
||||
GPIO_InitStruct.Mode = GPIO_MODE_IT_RISING;
|
||||
/*Configure GPIO pin : PC13 */
|
||||
GPIO_InitStruct.Pin = GPIO_PIN_13;
|
||||
GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
|
||||
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
||||
HAL_GPIO_Init(B1_GPIO_Port, &GPIO_InitStruct);
|
||||
HAL_GPIO_Init(GPIOC, &GPIO_InitStruct);
|
||||
|
||||
/*Configure GPIO pin : LD2_Pin */
|
||||
GPIO_InitStruct.Pin = LD2_Pin;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
../Core/Src/main.c:67:5:main 1
|
||||
../Core/Src/main.c:125:6:SystemClock_Config 3
|
||||
../Core/Src/main.c:169:13:MX_USART2_UART_Init 2
|
||||
../Core/Src/main.c:202:13:MX_GPIO_Init 1
|
||||
../Core/Src/main.c:244:6:Error_Handler 1
|
||||
../Core/Src/main.c:67:5:main 2
|
||||
../Core/Src/main.c:152:6:SystemClock_Config 3
|
||||
../Core/Src/main.c:196:13:MX_USART2_UART_Init 2
|
||||
../Core/Src/main.c:229:13:MX_GPIO_Init 1
|
||||
../Core/Src/main.c:271:6:Error_Handler 1
|
||||
|
||||
Binary file not shown.
@@ -1,5 +1,5 @@
|
||||
../Core/Src/main.c:67:5:main 8 static
|
||||
../Core/Src/main.c:125:6:SystemClock_Config 80 static
|
||||
../Core/Src/main.c:169:13:MX_USART2_UART_Init 8 static
|
||||
../Core/Src/main.c:202:13:MX_GPIO_Init 48 static
|
||||
../Core/Src/main.c:244:6:Error_Handler 4 static,ignoring_inline_asm
|
||||
../Core/Src/main.c:67:5:main 24 static
|
||||
../Core/Src/main.c:152:6:SystemClock_Config 80 static
|
||||
../Core/Src/main.c:196:13:MX_USART2_UART_Init 8 static
|
||||
../Core/Src/main.c:229:13:MX_GPIO_Init 48 static
|
||||
../Core/Src/main.c:271:6:Error_Handler 4 static,ignoring_inline_asm
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -168,7 +168,7 @@ Discarded input sections
|
||||
.debug_macro 0x00000000 0x2aa ./Core/Src/stm32l1xx_hal_msp.o
|
||||
.debug_macro 0x00000000 0x170 ./Core/Src/stm32l1xx_hal_msp.o
|
||||
.debug_macro 0x00000000 0x492 ./Core/Src/stm32l1xx_hal_msp.o
|
||||
.debug_macro 0x00000000 0x58 ./Core/Src/stm32l1xx_hal_msp.o
|
||||
.debug_macro 0x00000000 0x4c ./Core/Src/stm32l1xx_hal_msp.o
|
||||
.group 0x00000000 0xc ./Core/Src/stm32l1xx_it.o
|
||||
.group 0x00000000 0xc ./Core/Src/stm32l1xx_it.o
|
||||
.group 0x00000000 0xc ./Core/Src/stm32l1xx_it.o
|
||||
@@ -239,7 +239,7 @@ Discarded input sections
|
||||
.debug_macro 0x00000000 0x2aa ./Core/Src/stm32l1xx_it.o
|
||||
.debug_macro 0x00000000 0x170 ./Core/Src/stm32l1xx_it.o
|
||||
.debug_macro 0x00000000 0x492 ./Core/Src/stm32l1xx_it.o
|
||||
.debug_macro 0x00000000 0x58 ./Core/Src/stm32l1xx_it.o
|
||||
.debug_macro 0x00000000 0x4c ./Core/Src/stm32l1xx_it.o
|
||||
.group 0x00000000 0xc ./Core/Src/syscalls.o
|
||||
.group 0x00000000 0xc ./Core/Src/syscalls.o
|
||||
.group 0x00000000 0xc ./Core/Src/syscalls.o
|
||||
@@ -562,6 +562,8 @@ Discarded input sections
|
||||
0x00000000 0x50 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
.text.HAL_GetTickFreq
|
||||
0x00000000 0x14 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
.text.HAL_Delay
|
||||
0x00000000 0x44 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
.text.HAL_SuspendTick
|
||||
0x00000000 0x1c ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
.text.HAL_ResumeTick
|
||||
@@ -2247,7 +2249,7 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id
|
||||
0x08000000 g_pfnVectors
|
||||
0x0800013c . = ALIGN (0x4)
|
||||
|
||||
.text 0x0800013c 0x1c00
|
||||
.text 0x0800013c 0x1bec
|
||||
0x0800013c . = ALIGN (0x4)
|
||||
*(.text)
|
||||
.text 0x0800013c 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/crtbegin.o
|
||||
@@ -2259,272 +2261,269 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id
|
||||
0x080004ac __aeabi_ldiv0
|
||||
0x080004ac __aeabi_idiv0
|
||||
*(.text*)
|
||||
.text.main 0x080004b0 0x30 ./Core/Src/main.o
|
||||
.text.main 0x080004b0 0x60 ./Core/Src/main.o
|
||||
0x080004b0 main
|
||||
.text.SystemClock_Config
|
||||
0x080004e0 0x9c ./Core/Src/main.o
|
||||
0x080004e0 SystemClock_Config
|
||||
0x08000510 0x9c ./Core/Src/main.o
|
||||
0x08000510 SystemClock_Config
|
||||
.text.MX_USART2_UART_Init
|
||||
0x0800057c 0x54 ./Core/Src/main.o
|
||||
0x080005ac 0x54 ./Core/Src/main.o
|
||||
.text.MX_GPIO_Init
|
||||
0x080005d0 0xcc ./Core/Src/main.o
|
||||
0x08000600 0xcc ./Core/Src/main.o
|
||||
.text.Error_Handler
|
||||
0x0800069c 0xc ./Core/Src/main.o
|
||||
0x0800069c Error_Handler
|
||||
0x080006cc 0xc ./Core/Src/main.o
|
||||
0x080006cc Error_Handler
|
||||
.text.HAL_MspInit
|
||||
0x080006a8 0x60 ./Core/Src/stm32l1xx_hal_msp.o
|
||||
0x080006a8 HAL_MspInit
|
||||
0x080006d8 0x60 ./Core/Src/stm32l1xx_hal_msp.o
|
||||
0x080006d8 HAL_MspInit
|
||||
.text.HAL_UART_MspInit
|
||||
0x08000708 0x88 ./Core/Src/stm32l1xx_hal_msp.o
|
||||
0x08000708 HAL_UART_MspInit
|
||||
0x08000738 0x88 ./Core/Src/stm32l1xx_hal_msp.o
|
||||
0x08000738 HAL_UART_MspInit
|
||||
.text.NMI_Handler
|
||||
0x08000790 0x8 ./Core/Src/stm32l1xx_it.o
|
||||
0x08000790 NMI_Handler
|
||||
0x080007c0 0x8 ./Core/Src/stm32l1xx_it.o
|
||||
0x080007c0 NMI_Handler
|
||||
.text.HardFault_Handler
|
||||
0x08000798 0x8 ./Core/Src/stm32l1xx_it.o
|
||||
0x08000798 HardFault_Handler
|
||||
0x080007c8 0x8 ./Core/Src/stm32l1xx_it.o
|
||||
0x080007c8 HardFault_Handler
|
||||
.text.MemManage_Handler
|
||||
0x080007a0 0x8 ./Core/Src/stm32l1xx_it.o
|
||||
0x080007a0 MemManage_Handler
|
||||
0x080007d0 0x8 ./Core/Src/stm32l1xx_it.o
|
||||
0x080007d0 MemManage_Handler
|
||||
.text.BusFault_Handler
|
||||
0x080007a8 0x8 ./Core/Src/stm32l1xx_it.o
|
||||
0x080007a8 BusFault_Handler
|
||||
0x080007d8 0x8 ./Core/Src/stm32l1xx_it.o
|
||||
0x080007d8 BusFault_Handler
|
||||
.text.UsageFault_Handler
|
||||
0x080007b0 0x8 ./Core/Src/stm32l1xx_it.o
|
||||
0x080007b0 UsageFault_Handler
|
||||
0x080007e0 0x8 ./Core/Src/stm32l1xx_it.o
|
||||
0x080007e0 UsageFault_Handler
|
||||
.text.SVC_Handler
|
||||
0x080007b8 0xc ./Core/Src/stm32l1xx_it.o
|
||||
0x080007b8 SVC_Handler
|
||||
0x080007e8 0xc ./Core/Src/stm32l1xx_it.o
|
||||
0x080007e8 SVC_Handler
|
||||
.text.DebugMon_Handler
|
||||
0x080007c4 0xc ./Core/Src/stm32l1xx_it.o
|
||||
0x080007c4 DebugMon_Handler
|
||||
0x080007f4 0xc ./Core/Src/stm32l1xx_it.o
|
||||
0x080007f4 DebugMon_Handler
|
||||
.text.PendSV_Handler
|
||||
0x080007d0 0xc ./Core/Src/stm32l1xx_it.o
|
||||
0x080007d0 PendSV_Handler
|
||||
0x08000800 0xc ./Core/Src/stm32l1xx_it.o
|
||||
0x08000800 PendSV_Handler
|
||||
.text.SysTick_Handler
|
||||
0x080007dc 0xc ./Core/Src/stm32l1xx_it.o
|
||||
0x080007dc SysTick_Handler
|
||||
0x0800080c 0xc ./Core/Src/stm32l1xx_it.o
|
||||
0x0800080c SysTick_Handler
|
||||
.text.SystemInit
|
||||
0x080007e8 0xc ./Core/Src/system_stm32l1xx.o
|
||||
0x080007e8 SystemInit
|
||||
0x08000818 0xc ./Core/Src/system_stm32l1xx.o
|
||||
0x08000818 SystemInit
|
||||
.text.Reset_Handler
|
||||
0x080007f4 0x48 ./Core/Startup/startup_stm32l152retx.o
|
||||
0x080007f4 Reset_Handler
|
||||
0x08000824 0x48 ./Core/Startup/startup_stm32l152retx.o
|
||||
0x08000824 Reset_Handler
|
||||
.text.Default_Handler
|
||||
0x0800083c 0x2 ./Core/Startup/startup_stm32l152retx.o
|
||||
0x0800083c DMA2_Channel3_IRQHandler
|
||||
0x0800083c EXTI2_IRQHandler
|
||||
0x0800083c COMP_ACQ_IRQHandler
|
||||
0x0800083c TIM10_IRQHandler
|
||||
0x0800083c USB_HP_IRQHandler
|
||||
0x0800083c TIM6_IRQHandler
|
||||
0x0800083c PVD_IRQHandler
|
||||
0x0800083c EXTI3_IRQHandler
|
||||
0x0800083c EXTI0_IRQHandler
|
||||
0x0800083c I2C2_EV_IRQHandler
|
||||
0x0800083c SPI1_IRQHandler
|
||||
0x0800083c USB_FS_WKUP_IRQHandler
|
||||
0x0800083c DMA2_Channel2_IRQHandler
|
||||
0x0800083c DMA1_Channel4_IRQHandler
|
||||
0x0800083c ADC1_IRQHandler
|
||||
0x0800083c USART3_IRQHandler
|
||||
0x0800083c DMA1_Channel7_IRQHandler
|
||||
0x0800083c LCD_IRQHandler
|
||||
0x0800083c UART5_IRQHandler
|
||||
0x0800083c TIM4_IRQHandler
|
||||
0x0800083c DMA2_Channel1_IRQHandler
|
||||
0x0800083c I2C1_EV_IRQHandler
|
||||
0x0800083c DMA1_Channel6_IRQHandler
|
||||
0x0800083c UART4_IRQHandler
|
||||
0x0800083c DMA2_Channel4_IRQHandler
|
||||
0x0800083c TIM3_IRQHandler
|
||||
0x0800083c RCC_IRQHandler
|
||||
0x0800083c DMA1_Channel1_IRQHandler
|
||||
0x0800083c Default_Handler
|
||||
0x0800083c EXTI15_10_IRQHandler
|
||||
0x0800083c TIM7_IRQHandler
|
||||
0x0800083c TIM5_IRQHandler
|
||||
0x0800083c EXTI9_5_IRQHandler
|
||||
0x0800083c TIM9_IRQHandler
|
||||
0x0800083c TAMPER_STAMP_IRQHandler
|
||||
0x0800083c RTC_WKUP_IRQHandler
|
||||
0x0800083c SPI2_IRQHandler
|
||||
0x0800083c DMA2_Channel5_IRQHandler
|
||||
0x0800083c DMA1_Channel5_IRQHandler
|
||||
0x0800083c USB_LP_IRQHandler
|
||||
0x0800083c EXTI4_IRQHandler
|
||||
0x0800083c DMA1_Channel3_IRQHandler
|
||||
0x0800083c COMP_IRQHandler
|
||||
0x0800083c WWDG_IRQHandler
|
||||
0x0800083c TIM2_IRQHandler
|
||||
0x0800083c DAC_IRQHandler
|
||||
0x0800083c EXTI1_IRQHandler
|
||||
0x0800083c TIM11_IRQHandler
|
||||
0x0800083c USART2_IRQHandler
|
||||
0x0800083c I2C2_ER_IRQHandler
|
||||
0x0800083c DMA1_Channel2_IRQHandler
|
||||
0x0800083c FLASH_IRQHandler
|
||||
0x0800083c USART1_IRQHandler
|
||||
0x0800083c SPI3_IRQHandler
|
||||
0x0800083c I2C1_ER_IRQHandler
|
||||
0x0800083c RTC_Alarm_IRQHandler
|
||||
0x0800086c 0x2 ./Core/Startup/startup_stm32l152retx.o
|
||||
0x0800086c DMA2_Channel3_IRQHandler
|
||||
0x0800086c EXTI2_IRQHandler
|
||||
0x0800086c COMP_ACQ_IRQHandler
|
||||
0x0800086c TIM10_IRQHandler
|
||||
0x0800086c USB_HP_IRQHandler
|
||||
0x0800086c TIM6_IRQHandler
|
||||
0x0800086c PVD_IRQHandler
|
||||
0x0800086c EXTI3_IRQHandler
|
||||
0x0800086c EXTI0_IRQHandler
|
||||
0x0800086c I2C2_EV_IRQHandler
|
||||
0x0800086c SPI1_IRQHandler
|
||||
0x0800086c USB_FS_WKUP_IRQHandler
|
||||
0x0800086c DMA2_Channel2_IRQHandler
|
||||
0x0800086c DMA1_Channel4_IRQHandler
|
||||
0x0800086c ADC1_IRQHandler
|
||||
0x0800086c USART3_IRQHandler
|
||||
0x0800086c DMA1_Channel7_IRQHandler
|
||||
0x0800086c LCD_IRQHandler
|
||||
0x0800086c UART5_IRQHandler
|
||||
0x0800086c TIM4_IRQHandler
|
||||
0x0800086c DMA2_Channel1_IRQHandler
|
||||
0x0800086c I2C1_EV_IRQHandler
|
||||
0x0800086c DMA1_Channel6_IRQHandler
|
||||
0x0800086c UART4_IRQHandler
|
||||
0x0800086c DMA2_Channel4_IRQHandler
|
||||
0x0800086c TIM3_IRQHandler
|
||||
0x0800086c RCC_IRQHandler
|
||||
0x0800086c DMA1_Channel1_IRQHandler
|
||||
0x0800086c Default_Handler
|
||||
0x0800086c EXTI15_10_IRQHandler
|
||||
0x0800086c TIM7_IRQHandler
|
||||
0x0800086c TIM5_IRQHandler
|
||||
0x0800086c EXTI9_5_IRQHandler
|
||||
0x0800086c TIM9_IRQHandler
|
||||
0x0800086c TAMPER_STAMP_IRQHandler
|
||||
0x0800086c RTC_WKUP_IRQHandler
|
||||
0x0800086c SPI2_IRQHandler
|
||||
0x0800086c DMA2_Channel5_IRQHandler
|
||||
0x0800086c DMA1_Channel5_IRQHandler
|
||||
0x0800086c USB_LP_IRQHandler
|
||||
0x0800086c EXTI4_IRQHandler
|
||||
0x0800086c DMA1_Channel3_IRQHandler
|
||||
0x0800086c COMP_IRQHandler
|
||||
0x0800086c WWDG_IRQHandler
|
||||
0x0800086c TIM2_IRQHandler
|
||||
0x0800086c DAC_IRQHandler
|
||||
0x0800086c EXTI1_IRQHandler
|
||||
0x0800086c TIM11_IRQHandler
|
||||
0x0800086c USART2_IRQHandler
|
||||
0x0800086c I2C2_ER_IRQHandler
|
||||
0x0800086c DMA1_Channel2_IRQHandler
|
||||
0x0800086c FLASH_IRQHandler
|
||||
0x0800086c USART1_IRQHandler
|
||||
0x0800086c SPI3_IRQHandler
|
||||
0x0800086c I2C1_ER_IRQHandler
|
||||
0x0800086c RTC_Alarm_IRQHandler
|
||||
.text.HAL_Init
|
||||
0x0800083e 0x30 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
0x0800083e HAL_Init
|
||||
*fill* 0x0800086e 0x2
|
||||
0x0800086e 0x30 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
0x0800086e HAL_Init
|
||||
*fill* 0x0800089e 0x2
|
||||
.text.HAL_InitTick
|
||||
0x08000870 0x74 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
0x08000870 HAL_InitTick
|
||||
0x080008a0 0x74 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
0x080008a0 HAL_InitTick
|
||||
.text.HAL_IncTick
|
||||
0x080008e4 0x24 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
0x080008e4 HAL_IncTick
|
||||
0x08000914 0x24 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
0x08000914 HAL_IncTick
|
||||
.text.HAL_GetTick
|
||||
0x08000908 0x14 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
0x08000908 HAL_GetTick
|
||||
.text.HAL_Delay
|
||||
0x0800091c 0x44 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
0x0800091c HAL_Delay
|
||||
0x08000938 0x14 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
0x08000938 HAL_GetTick
|
||||
.text.__NVIC_SetPriorityGrouping
|
||||
0x08000960 0x48 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
0x0800094c 0x48 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
.text.__NVIC_GetPriorityGrouping
|
||||
0x080009a8 0x1c ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
0x08000994 0x1c ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
.text.__NVIC_SetPriority
|
||||
0x080009c4 0x54 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
0x080009b0 0x54 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
.text.NVIC_EncodePriority
|
||||
0x08000a18 0x64 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
0x08000a04 0x64 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
.text.SysTick_Config
|
||||
0x08000a7c 0x44 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
0x08000a68 0x44 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
.text.HAL_NVIC_SetPriorityGrouping
|
||||
0x08000ac0 0x16 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
0x08000ac0 HAL_NVIC_SetPriorityGrouping
|
||||
0x08000aac 0x16 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
0x08000aac HAL_NVIC_SetPriorityGrouping
|
||||
.text.HAL_NVIC_SetPriority
|
||||
0x08000ad6 0x38 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
0x08000ad6 HAL_NVIC_SetPriority
|
||||
0x08000ac2 0x38 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
0x08000ac2 HAL_NVIC_SetPriority
|
||||
.text.HAL_SYSTICK_Config
|
||||
0x08000b0e 0x18 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
0x08000b0e HAL_SYSTICK_Config
|
||||
*fill* 0x08000b26 0x2
|
||||
0x08000afa 0x18 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
0x08000afa HAL_SYSTICK_Config
|
||||
*fill* 0x08000b12 0x2
|
||||
.text.HAL_GPIO_Init
|
||||
0x08000b28 0x320 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_gpio.o
|
||||
0x08000b28 HAL_GPIO_Init
|
||||
0x08000b14 0x320 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_gpio.o
|
||||
0x08000b14 HAL_GPIO_Init
|
||||
.text.HAL_GPIO_WritePin
|
||||
0x08000e48 0x30 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_gpio.o
|
||||
0x08000e48 HAL_GPIO_WritePin
|
||||
0x08000e34 0x30 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_gpio.o
|
||||
0x08000e34 HAL_GPIO_WritePin
|
||||
.text.HAL_RCC_OscConfig
|
||||
0x08000e78 0x660 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
0x08000e78 HAL_RCC_OscConfig
|
||||
0x08000e64 0x660 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
0x08000e64 HAL_RCC_OscConfig
|
||||
.text.HAL_RCC_ClockConfig
|
||||
0x080014d8 0x268 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
0x080014d8 HAL_RCC_ClockConfig
|
||||
0x080014c4 0x268 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
0x080014c4 HAL_RCC_ClockConfig
|
||||
.text.HAL_RCC_GetSysClockFreq
|
||||
0x08001740 0x200 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
0x08001740 HAL_RCC_GetSysClockFreq
|
||||
0x0800172c 0x200 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
0x0800172c HAL_RCC_GetSysClockFreq
|
||||
.text.HAL_RCC_GetHCLKFreq
|
||||
0x08001940 0x14 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
0x08001940 HAL_RCC_GetHCLKFreq
|
||||
0x0800192c 0x14 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
0x0800192c HAL_RCC_GetHCLKFreq
|
||||
.text.HAL_RCC_GetPCLK1Freq
|
||||
0x08001954 0x28 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
0x08001954 HAL_RCC_GetPCLK1Freq
|
||||
0x08001940 0x28 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
0x08001940 HAL_RCC_GetPCLK1Freq
|
||||
.text.HAL_RCC_GetPCLK2Freq
|
||||
0x0800197c 0x28 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
0x0800197c HAL_RCC_GetPCLK2Freq
|
||||
0x08001968 0x28 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
0x08001968 HAL_RCC_GetPCLK2Freq
|
||||
.text.RCC_SetFlashLatencyFromMSIRange
|
||||
0x080019a4 0xc0 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
0x08001990 0xc0 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
.text.HAL_UART_Init
|
||||
0x08001a64 0xa0 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_uart.o
|
||||
0x08001a64 HAL_UART_Init
|
||||
0x08001a50 0xa0 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_uart.o
|
||||
0x08001a50 HAL_UART_Init
|
||||
.text.UART_SetConfig
|
||||
0x08001b04 0x1c8 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_uart.o
|
||||
.text.memset 0x08001ccc 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(libc_a-memset.o)
|
||||
0x08001ccc memset
|
||||
0x08001af0 0x1c8 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_uart.o
|
||||
.text.memset 0x08001cb8 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(libc_a-memset.o)
|
||||
0x08001cb8 memset
|
||||
.text.__libc_init_array
|
||||
0x08001cdc 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(libc_a-init.o)
|
||||
0x08001cdc __libc_init_array
|
||||
0x08001cc8 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(libc_a-init.o)
|
||||
0x08001cc8 __libc_init_array
|
||||
*(.glue_7)
|
||||
.glue_7 0x08001d24 0x0 linker stubs
|
||||
.glue_7 0x08001d10 0x0 linker stubs
|
||||
*(.glue_7t)
|
||||
.glue_7t 0x08001d24 0x0 linker stubs
|
||||
.glue_7t 0x08001d10 0x0 linker stubs
|
||||
*(.eh_frame)
|
||||
.eh_frame 0x08001d24 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/crtbegin.o
|
||||
.eh_frame 0x08001d10 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/crtbegin.o
|
||||
*(.init)
|
||||
.init 0x08001d24 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/crti.o
|
||||
0x08001d24 _init
|
||||
.init 0x08001d28 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/crtn.o
|
||||
.init 0x08001d10 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/crti.o
|
||||
0x08001d10 _init
|
||||
.init 0x08001d14 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/crtn.o
|
||||
*(.fini)
|
||||
.fini 0x08001d30 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/crti.o
|
||||
0x08001d30 _fini
|
||||
.fini 0x08001d34 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/crtn.o
|
||||
0x08001d3c . = ALIGN (0x4)
|
||||
0x08001d3c _etext = .
|
||||
.fini 0x08001d1c 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/crti.o
|
||||
0x08001d1c _fini
|
||||
.fini 0x08001d20 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/crtn.o
|
||||
0x08001d28 . = ALIGN (0x4)
|
||||
0x08001d28 _etext = .
|
||||
|
||||
.vfp11_veneer 0x08001d3c 0x0
|
||||
.vfp11_veneer 0x08001d3c 0x0 linker stubs
|
||||
.vfp11_veneer 0x08001d28 0x0
|
||||
.vfp11_veneer 0x08001d28 0x0 linker stubs
|
||||
|
||||
.v4_bx 0x08001d3c 0x0
|
||||
.v4_bx 0x08001d3c 0x0 linker stubs
|
||||
.v4_bx 0x08001d28 0x0
|
||||
.v4_bx 0x08001d28 0x0 linker stubs
|
||||
|
||||
.iplt 0x08001d3c 0x0
|
||||
.iplt 0x08001d3c 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/crtbegin.o
|
||||
.iplt 0x08001d28 0x0
|
||||
.iplt 0x08001d28 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/crtbegin.o
|
||||
|
||||
.rodata 0x08001d3c 0x24
|
||||
0x08001d3c . = ALIGN (0x4)
|
||||
.rodata 0x08001d28 0x24
|
||||
0x08001d28 . = ALIGN (0x4)
|
||||
*(.rodata)
|
||||
*(.rodata*)
|
||||
.rodata.PLLMulTable
|
||||
0x08001d3c 0x9 ./Core/Src/system_stm32l1xx.o
|
||||
0x08001d3c PLLMulTable
|
||||
*fill* 0x08001d45 0x3
|
||||
0x08001d28 0x9 ./Core/Src/system_stm32l1xx.o
|
||||
0x08001d28 PLLMulTable
|
||||
*fill* 0x08001d31 0x3
|
||||
.rodata.AHBPrescTable
|
||||
0x08001d48 0x10 ./Core/Src/system_stm32l1xx.o
|
||||
0x08001d48 AHBPrescTable
|
||||
0x08001d34 0x10 ./Core/Src/system_stm32l1xx.o
|
||||
0x08001d34 AHBPrescTable
|
||||
.rodata.APBPrescTable
|
||||
0x08001d58 0x8 ./Core/Src/system_stm32l1xx.o
|
||||
0x08001d58 APBPrescTable
|
||||
0x08001d60 . = ALIGN (0x4)
|
||||
0x08001d44 0x8 ./Core/Src/system_stm32l1xx.o
|
||||
0x08001d44 APBPrescTable
|
||||
0x08001d4c . = ALIGN (0x4)
|
||||
|
||||
.ARM.extab 0x08001d60 0x0
|
||||
0x08001d60 . = ALIGN (0x4)
|
||||
.ARM.extab 0x08001d4c 0x0
|
||||
0x08001d4c . = ALIGN (0x4)
|
||||
*(.ARM.extab* .gnu.linkonce.armextab.*)
|
||||
0x08001d60 . = ALIGN (0x4)
|
||||
0x08001d4c . = ALIGN (0x4)
|
||||
|
||||
.ARM 0x08001d60 0x8
|
||||
0x08001d60 . = ALIGN (0x4)
|
||||
0x08001d60 __exidx_start = .
|
||||
.ARM 0x08001d4c 0x8
|
||||
0x08001d4c . = ALIGN (0x4)
|
||||
0x08001d4c __exidx_start = .
|
||||
*(.ARM.exidx*)
|
||||
.ARM.exidx 0x08001d60 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/libgcc.a(_udivmoddi4.o)
|
||||
0x08001d68 __exidx_end = .
|
||||
0x08001d68 . = ALIGN (0x4)
|
||||
.ARM.exidx 0x08001d4c 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/libgcc.a(_udivmoddi4.o)
|
||||
0x08001d54 __exidx_end = .
|
||||
0x08001d54 . = ALIGN (0x4)
|
||||
|
||||
.preinit_array 0x08001d68 0x0
|
||||
0x08001d68 . = ALIGN (0x4)
|
||||
0x08001d68 PROVIDE (__preinit_array_start = .)
|
||||
.preinit_array 0x08001d54 0x0
|
||||
0x08001d54 . = ALIGN (0x4)
|
||||
0x08001d54 PROVIDE (__preinit_array_start = .)
|
||||
*(.preinit_array*)
|
||||
0x08001d68 PROVIDE (__preinit_array_end = .)
|
||||
0x08001d68 . = ALIGN (0x4)
|
||||
0x08001d54 PROVIDE (__preinit_array_end = .)
|
||||
0x08001d54 . = ALIGN (0x4)
|
||||
|
||||
.init_array 0x08001d68 0x4
|
||||
0x08001d68 . = ALIGN (0x4)
|
||||
0x08001d68 PROVIDE (__init_array_start = .)
|
||||
.init_array 0x08001d54 0x4
|
||||
0x08001d54 . = ALIGN (0x4)
|
||||
0x08001d54 PROVIDE (__init_array_start = .)
|
||||
*(SORT_BY_NAME(.init_array.*))
|
||||
*(.init_array*)
|
||||
.init_array 0x08001d68 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/crtbegin.o
|
||||
0x08001d6c PROVIDE (__init_array_end = .)
|
||||
0x08001d6c . = ALIGN (0x4)
|
||||
.init_array 0x08001d54 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/crtbegin.o
|
||||
0x08001d58 PROVIDE (__init_array_end = .)
|
||||
0x08001d58 . = ALIGN (0x4)
|
||||
|
||||
.fini_array 0x08001d6c 0x4
|
||||
0x08001d6c . = ALIGN (0x4)
|
||||
.fini_array 0x08001d58 0x4
|
||||
0x08001d58 . = ALIGN (0x4)
|
||||
[!provide] PROVIDE (__fini_array_start = .)
|
||||
*(SORT_BY_NAME(.fini_array.*))
|
||||
*(.fini_array*)
|
||||
.fini_array 0x08001d6c 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/crtbegin.o
|
||||
.fini_array 0x08001d58 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/crtbegin.o
|
||||
[!provide] PROVIDE (__fini_array_end = .)
|
||||
0x08001d70 . = ALIGN (0x4)
|
||||
0x08001d70 _sidata = LOADADDR (.data)
|
||||
0x08001d5c . = ALIGN (0x4)
|
||||
0x08001d5c _sidata = LOADADDR (.data)
|
||||
|
||||
.rel.dyn 0x08001d70 0x0
|
||||
.rel.iplt 0x08001d70 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/crtbegin.o
|
||||
.rel.dyn 0x08001d5c 0x0
|
||||
.rel.iplt 0x08001d5c 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/crtbegin.o
|
||||
|
||||
.data 0x20000000 0xc load address 0x08001d70
|
||||
.data 0x20000000 0xc load address 0x08001d5c
|
||||
0x20000000 . = ALIGN (0x4)
|
||||
0x20000000 _sdata = .
|
||||
*(.data)
|
||||
@@ -2543,11 +2542,11 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id
|
||||
0x2000000c . = ALIGN (0x4)
|
||||
0x2000000c _edata = .
|
||||
|
||||
.igot.plt 0x2000000c 0x0 load address 0x08001d7c
|
||||
.igot.plt 0x2000000c 0x0 load address 0x08001d68
|
||||
.igot.plt 0x2000000c 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/crtbegin.o
|
||||
0x2000000c . = ALIGN (0x4)
|
||||
|
||||
.bss 0x2000000c 0x68 load address 0x08001d7c
|
||||
.bss 0x2000000c 0x68 load address 0x08001d68
|
||||
0x2000000c _sbss = .
|
||||
0x2000000c __bss_start__ = _sbss
|
||||
*(.bss)
|
||||
@@ -2563,7 +2562,7 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id
|
||||
0x20000074 __bss_end__ = _ebss
|
||||
|
||||
._user_heap_stack
|
||||
0x20000074 0x604 load address 0x08001d7c
|
||||
0x20000074 0x604 load address 0x08001d68
|
||||
0x20000078 . = ALIGN (0x8)
|
||||
*fill* 0x20000074 0x4
|
||||
[!provide] PROVIDE (end = .)
|
||||
@@ -2624,29 +2623,29 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id
|
||||
LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libm.a
|
||||
LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/libgcc.a
|
||||
|
||||
.debug_info 0x00000000 0x68b5
|
||||
.debug_info 0x00000000 0xad7 ./Core/Src/main.o
|
||||
.debug_info 0x00000ad7 0x80f ./Core/Src/stm32l1xx_hal_msp.o
|
||||
.debug_info 0x000012e6 0x113 ./Core/Src/stm32l1xx_it.o
|
||||
.debug_info 0x000013f9 0x27c ./Core/Src/system_stm32l1xx.o
|
||||
.debug_info 0x00001675 0x30 ./Core/Startup/startup_stm32l152retx.o
|
||||
.debug_info 0x000016a5 0x6ef ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
.debug_info 0x00001d94 0xce5 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
.debug_info 0x00002a79 0x5b2 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_gpio.o
|
||||
.debug_info 0x0000302b 0x99b ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
.debug_info 0x000039c6 0x2eef ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_uart.o
|
||||
.debug_info 0x00000000 0x68f7
|
||||
.debug_info 0x00000000 0xb19 ./Core/Src/main.o
|
||||
.debug_info 0x00000b19 0x80f ./Core/Src/stm32l1xx_hal_msp.o
|
||||
.debug_info 0x00001328 0x113 ./Core/Src/stm32l1xx_it.o
|
||||
.debug_info 0x0000143b 0x27c ./Core/Src/system_stm32l1xx.o
|
||||
.debug_info 0x000016b7 0x30 ./Core/Startup/startup_stm32l152retx.o
|
||||
.debug_info 0x000016e7 0x6ef ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
.debug_info 0x00001dd6 0xce5 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
.debug_info 0x00002abb 0x5b2 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_gpio.o
|
||||
.debug_info 0x0000306d 0x99b ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
.debug_info 0x00003a08 0x2eef ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_uart.o
|
||||
|
||||
.debug_abbrev 0x00000000 0x12b0
|
||||
.debug_abbrev 0x00000000 0x23f ./Core/Src/main.o
|
||||
.debug_abbrev 0x0000023f 0x1aa ./Core/Src/stm32l1xx_hal_msp.o
|
||||
.debug_abbrev 0x000003e9 0x73 ./Core/Src/stm32l1xx_it.o
|
||||
.debug_abbrev 0x0000045c 0x11c ./Core/Src/system_stm32l1xx.o
|
||||
.debug_abbrev 0x00000578 0x24 ./Core/Startup/startup_stm32l152retx.o
|
||||
.debug_abbrev 0x0000059c 0x275 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
.debug_abbrev 0x00000811 0x31c ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
.debug_abbrev 0x00000b2d 0x1d4 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_gpio.o
|
||||
.debug_abbrev 0x00000d01 0x2b8 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
.debug_abbrev 0x00000fb9 0x2f7 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_uart.o
|
||||
.debug_abbrev 0x00000000 0x12f3
|
||||
.debug_abbrev 0x00000000 0x282 ./Core/Src/main.o
|
||||
.debug_abbrev 0x00000282 0x1aa ./Core/Src/stm32l1xx_hal_msp.o
|
||||
.debug_abbrev 0x0000042c 0x73 ./Core/Src/stm32l1xx_it.o
|
||||
.debug_abbrev 0x0000049f 0x11c ./Core/Src/system_stm32l1xx.o
|
||||
.debug_abbrev 0x000005bb 0x24 ./Core/Startup/startup_stm32l152retx.o
|
||||
.debug_abbrev 0x000005df 0x275 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
.debug_abbrev 0x00000854 0x31c ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
.debug_abbrev 0x00000b70 0x1d4 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_gpio.o
|
||||
.debug_abbrev 0x00000d44 0x2b8 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
.debug_abbrev 0x00000ffc 0x2f7 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_uart.o
|
||||
|
||||
.debug_aranges 0x00000000 0x618
|
||||
.debug_aranges
|
||||
@@ -2693,7 +2692,7 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id
|
||||
.debug_rnglists
|
||||
0x000002eb 0x1bc ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_uart.o
|
||||
|
||||
.debug_macro 0x00000000 0x14885
|
||||
.debug_macro 0x00000000 0x14879
|
||||
.debug_macro 0x00000000 0x1aa ./Core/Src/main.o
|
||||
.debug_macro 0x000001aa 0xacc ./Core/Src/main.o
|
||||
.debug_macro 0x00000c76 0x109 ./Core/Src/main.o
|
||||
@@ -2728,40 +2727,40 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id
|
||||
.debug_macro 0x00013243 0x2aa ./Core/Src/main.o
|
||||
.debug_macro 0x000134ed 0x170 ./Core/Src/main.o
|
||||
.debug_macro 0x0001365d 0x492 ./Core/Src/main.o
|
||||
.debug_macro 0x00013aef 0x58 ./Core/Src/main.o
|
||||
.debug_macro 0x00013b47 0x1aa ./Core/Src/stm32l1xx_hal_msp.o
|
||||
.debug_macro 0x00013cf1 0x1b4 ./Core/Src/stm32l1xx_it.o
|
||||
.debug_macro 0x00013ea5 0x19b ./Core/Src/system_stm32l1xx.o
|
||||
.debug_macro 0x00014040 0x1bf ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
.debug_macro 0x000141ff 0x19b ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
.debug_macro 0x0001439a 0x1a2 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_gpio.o
|
||||
.debug_macro 0x0001453c 0x1ad ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
.debug_macro 0x000146e9 0x19c ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_uart.o
|
||||
.debug_macro 0x00013aef 0x4c ./Core/Src/main.o
|
||||
.debug_macro 0x00013b3b 0x1aa ./Core/Src/stm32l1xx_hal_msp.o
|
||||
.debug_macro 0x00013ce5 0x1b4 ./Core/Src/stm32l1xx_it.o
|
||||
.debug_macro 0x00013e99 0x19b ./Core/Src/system_stm32l1xx.o
|
||||
.debug_macro 0x00014034 0x1bf ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
.debug_macro 0x000141f3 0x19b ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
.debug_macro 0x0001438e 0x1a2 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_gpio.o
|
||||
.debug_macro 0x00014530 0x1ad ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
.debug_macro 0x000146dd 0x19c ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_uart.o
|
||||
|
||||
.debug_line 0x00000000 0x7044
|
||||
.debug_line 0x00000000 0x784 ./Core/Src/main.o
|
||||
.debug_line 0x00000784 0x6df ./Core/Src/stm32l1xx_hal_msp.o
|
||||
.debug_line 0x00000e63 0x73f ./Core/Src/stm32l1xx_it.o
|
||||
.debug_line 0x000015a2 0x731 ./Core/Src/system_stm32l1xx.o
|
||||
.debug_line 0x00001cd3 0x79 ./Core/Startup/startup_stm32l152retx.o
|
||||
.debug_line 0x00001d4c 0x95c ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
.debug_line 0x000026a8 0xc2b ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
.debug_line 0x000032d3 0x9a0 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_gpio.o
|
||||
.debug_line 0x00003c73 0xf20 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
.debug_line 0x00004b93 0x24b1 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_uart.o
|
||||
.debug_line 0x00000000 0x705f
|
||||
.debug_line 0x00000000 0x79f ./Core/Src/main.o
|
||||
.debug_line 0x0000079f 0x6df ./Core/Src/stm32l1xx_hal_msp.o
|
||||
.debug_line 0x00000e7e 0x73f ./Core/Src/stm32l1xx_it.o
|
||||
.debug_line 0x000015bd 0x731 ./Core/Src/system_stm32l1xx.o
|
||||
.debug_line 0x00001cee 0x79 ./Core/Startup/startup_stm32l152retx.o
|
||||
.debug_line 0x00001d67 0x95c ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
.debug_line 0x000026c3 0xc2b ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
.debug_line 0x000032ee 0x9a0 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_gpio.o
|
||||
.debug_line 0x00003c8e 0xf20 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
.debug_line 0x00004bae 0x24b1 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_uart.o
|
||||
|
||||
.debug_str 0x00000000 0x819c0
|
||||
.debug_str 0x00000000 0x819c0 ./Core/Src/main.o
|
||||
0x805e0 (size before relaxing)
|
||||
.debug_str 0x000819c0 0x803fa ./Core/Src/stm32l1xx_hal_msp.o
|
||||
.debug_str 0x000819c0 0x7ff50 ./Core/Src/stm32l1xx_it.o
|
||||
.debug_str 0x000819c0 0x7fe7b ./Core/Src/system_stm32l1xx.o
|
||||
.debug_str 0x000819c0 0x85 ./Core/Startup/startup_stm32l152retx.o
|
||||
.debug_str 0x000819c0 0x805a3 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
.debug_str 0x000819c0 0x806af ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
.debug_str 0x000819c0 0x8000e ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_gpio.o
|
||||
.debug_str 0x000819c0 0x80337 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
.debug_str 0x000819c0 0x808e0 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_uart.o
|
||||
.debug_str 0x00000000 0x819b0
|
||||
.debug_str 0x00000000 0x819b0 ./Core/Src/main.o
|
||||
0x805c6 (size before relaxing)
|
||||
.debug_str 0x000819b0 0x803d4 ./Core/Src/stm32l1xx_hal_msp.o
|
||||
.debug_str 0x000819b0 0x7ff2a ./Core/Src/stm32l1xx_it.o
|
||||
.debug_str 0x000819b0 0x7fe7b ./Core/Src/system_stm32l1xx.o
|
||||
.debug_str 0x000819b0 0x85 ./Core/Startup/startup_stm32l152retx.o
|
||||
.debug_str 0x000819b0 0x805a3 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
.debug_str 0x000819b0 0x806af ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
.debug_str 0x000819b0 0x8000e ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_gpio.o
|
||||
.debug_str 0x000819b0 0x80337 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
.debug_str 0x000819b0 0x808e0 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_uart.o
|
||||
|
||||
.comment 0x00000000 0x43
|
||||
.comment 0x00000000 0x43 ./Core/Src/main.o
|
||||
@@ -2775,20 +2774,20 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id
|
||||
.comment 0x00000043 0x44 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
.comment 0x00000043 0x44 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_uart.o
|
||||
|
||||
.debug_frame 0x00000000 0x1804
|
||||
.debug_frame 0x00000000 0xa8 ./Core/Src/main.o
|
||||
.debug_frame 0x000000a8 0x7c ./Core/Src/stm32l1xx_hal_msp.o
|
||||
.debug_frame 0x00000124 0x104 ./Core/Src/stm32l1xx_it.o
|
||||
.debug_frame 0x00000228 0x58 ./Core/Src/system_stm32l1xx.o
|
||||
.debug_frame 0x00000280 0x33c ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
.debug_frame 0x000005bc 0x4e8 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
.debug_frame 0x00000aa4 0x14c ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_gpio.o
|
||||
.debug_frame 0x00000bf0 0x224 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
.debug_frame 0x00000e14 0x944 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_uart.o
|
||||
.debug_frame 0x00001758 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(libc_a-memset.o)
|
||||
.debug_frame 0x00001778 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(libc_a-init.o)
|
||||
.debug_frame 0x000017a4 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/libgcc.a(_aeabi_uldivmod.o)
|
||||
.debug_frame 0x000017d0 0x34 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/libgcc.a(_udivmoddi4.o)
|
||||
.debug_frame 0x00000000 0x1808
|
||||
.debug_frame 0x00000000 0xac ./Core/Src/main.o
|
||||
.debug_frame 0x000000ac 0x7c ./Core/Src/stm32l1xx_hal_msp.o
|
||||
.debug_frame 0x00000128 0x104 ./Core/Src/stm32l1xx_it.o
|
||||
.debug_frame 0x0000022c 0x58 ./Core/Src/system_stm32l1xx.o
|
||||
.debug_frame 0x00000284 0x33c ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal.o
|
||||
.debug_frame 0x000005c0 0x4e8 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_cortex.o
|
||||
.debug_frame 0x00000aa8 0x14c ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_gpio.o
|
||||
.debug_frame 0x00000bf4 0x224 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_rcc.o
|
||||
.debug_frame 0x00000e18 0x944 ./Drivers/STM32L1xx_HAL_Driver/Src/stm32l1xx_hal_uart.o
|
||||
.debug_frame 0x0000175c 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(libc_a-memset.o)
|
||||
.debug_frame 0x0000177c 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(libc_a-init.o)
|
||||
.debug_frame 0x000017a8 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/libgcc.a(_aeabi_uldivmod.o)
|
||||
.debug_frame 0x000017d4 0x34 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.macos64_1.0.0.202411102158/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7-m/nofp/libgcc.a(_udivmoddi4.o)
|
||||
|
||||
.debug_line_str
|
||||
0x00000000 0x69
|
||||
|
||||
@@ -70,10 +70,8 @@ PB3.GPIOParameters=GPIO_Label
|
||||
PB3.GPIO_Label=SWO
|
||||
PB3.Locked=true
|
||||
PB3.Signal=SYS_JTDO-TRACESWO
|
||||
PC13-WKUP2.GPIOParameters=GPIO_Label
|
||||
PC13-WKUP2.GPIO_Label=B1 [Blue PushButton]
|
||||
PC13-WKUP2.Locked=true
|
||||
PC13-WKUP2.Signal=GPXTI13
|
||||
PC13-WKUP2.Signal=GPIO_Input
|
||||
PC14-OSC32_IN.Locked=true
|
||||
PC14-OSC32_IN.Mode=LSE-External-Oscillator
|
||||
PC14-OSC32_IN.Signal=RCC_OSC32_IN
|
||||
@@ -147,8 +145,6 @@ RCC.TIMFreq_Value=32000000
|
||||
RCC.TimerFreq_Value=32000000
|
||||
RCC.USBOutput=48000000
|
||||
RCC.VCOOutputFreq_Value=96000000
|
||||
SH.GPXTI13.0=GPIO_EXTI13
|
||||
SH.GPXTI13.ConfNb=1
|
||||
USART2.IPParameters=VirtualMode
|
||||
USART2.VirtualMode=VM_ASYNC
|
||||
VP_SYS_VS_Systick.Mode=SysTick
|
||||
|
||||
Reference in New Issue
Block a user