diff --git a/fw/.settings/language.settings.xml b/fw/.settings/language.settings.xml index 3740b5b..87c8372 100644 --- a/fw/.settings/language.settings.xml +++ b/fw/.settings/language.settings.xml @@ -1,52 +1,27 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/fw/Core/Inc/led.h b/fw/Core/Inc/led.h new file mode 100644 index 0000000..5ddc918 --- /dev/null +++ b/fw/Core/Inc/led.h @@ -0,0 +1,48 @@ +/* + * led.h + * + * Created on: Jun 6, 2021 + * Author: user + */ + +#ifndef INC_LED_H_ +#define INC_LED_H_ + +#include "stdint.h" +#include "stm32l0xx_hal.h" +#include "stm32l0xx_ll_gpio.h" + +/* + * Context struct + */ + +typedef struct { + GPIO_TypeDef *red_led_port; + int red_led_pin; + GPIO_TypeDef *green_led_port; + int green_led_pin; + GPIO_TypeDef *blue_led_port; + int blue_led_pin; + +} led_context_t; + +/* + * Externally defined variables + */ + +extern int led_pwm_max; +extern int led_pwm_counter; +extern int led_red_intensity; +extern int led_green_intensity; +extern int led_blue_intensity; + +/* + * Function prototypes + */ + +void led_set_color(uint8_t red, uint8_t green, uint8_t blue); +void led_off(); +void led_pwm_handler(); +void led_init(led_context_t *context, int pwm_freq, int pwm_handler_freq); + +#endif /* INC_LED_H_ */ diff --git a/fw/Core/Inc/main.h b/fw/Core/Inc/main.h index 716c334..ac23650 100644 --- a/fw/Core/Inc/main.h +++ b/fw/Core/Inc/main.h @@ -44,6 +44,7 @@ extern "C" { /* Private includes ----------------------------------------------------------*/ /* USER CODE BEGIN Includes */ +#include "led.h" /* USER CODE END Includes */ /* Exported types ------------------------------------------------------------*/ diff --git a/fw/Core/Src/led.c b/fw/Core/Src/led.c new file mode 100644 index 0000000..051da44 --- /dev/null +++ b/fw/Core/Src/led.c @@ -0,0 +1,121 @@ +/* + * led.c + * + * Created on: Jun 6, 2021 + * Author: user + */ + +#include "led.h" + +/* + * Global variables + */ + +int led_pwm_max; +int led_pwm_counter; +int led_red_intensity; +int led_green_intensity; +int led_blue_intensity; +int led_red_state; +int led_green_state; +int led_blue_state; +led_context_t *led_context = NULL; + +/* + * Functions + */ + +/* + * led_set_color(): + * Set LED color + * Arguments: + * uint8_t red: red color intensity, possible values 0 ... 255 + * uint8_t green: green color intensity, possible values 0 ... 255 + * uint8_t blue: blue color intensity, possible values 0 ... 255 + * NOTE: if (color * led_pwm_max) < 255, LED will be off + */ +void led_set_color(uint8_t red, uint8_t green, uint8_t blue) +{ + led_red_intensity = (int)red * led_pwm_max / 255; + led_green_intensity = (int)green * led_pwm_max / 255; + led_blue_intensity = (int)blue * led_pwm_max / 255; +} + +/* + * led_off(): + * Set LED intensity to 0 for each color + */ +void led_off() +{ + led_red_intensity = 0; + led_green_intensity = 0; + led_blue_intensity = 0; +} + +/* + * led_pwm_handler(): + * handles switching LEDs on/off according to desired intensity; + * should be regularly called in timer routine, preferably in SysTick_Handler() + */ +void led_pwm_handler() +{ + int new_red_state, new_green_state, new_blue_state; + + if (led_context == NULL) { + // led_pwm_handler() may be called before led_init() was called; + // this would result in a crash + return; + } + + new_red_state = led_pwm_counter >= led_red_intensity ? 1 : 0; + new_green_state = led_pwm_counter >= led_green_intensity ? 1 : 0; + new_blue_state = led_pwm_counter >= led_blue_intensity ? 1 : 0; + // SysTick() is called at 1 kHz frequency, we don't want to call HAL_GPIO_WritePin() every time + if (led_red_state != new_red_state) { + LL_GPIO_TogglePin(led_context->red_led_port, led_context->red_led_pin); + led_red_state = new_red_state; + } + if (led_green_state != new_green_state) { + LL_GPIO_TogglePin(led_context->green_led_port, led_context->green_led_pin); + led_green_state = new_green_state; + } + if (led_blue_state != new_blue_state) { + LL_GPIO_TogglePin(led_context->blue_led_port, led_context->blue_led_pin); + led_blue_state = new_blue_state; + } + if (++led_pwm_counter >= led_pwm_max) { + led_pwm_counter = 0; + } +} + +/* + * led_init(): + * Saves context and calculates max pwm value. Note that is PWM frequency is low (< 25 Hz), + * flickering might be visible. If pwm_handler_freq is low (less than several kHz), + * resolution of PWM will be limited + * Arguments: + * led_context_t *context: + * Pointer to LED context struct, which contains port and pin for each LED + * int pwm_freq: + * Desired frequency of PWM in Hz (e.g. 25 Hz) + * int pwm_handler_freq: + * Frequency of led_pwm_handler() calls. Eequal to timer frequency if timer callback is used, + * e.g. if led_pwm_handler() is called within SysTick_Handler(), then frequency is + * HAL_TICK_FREQ_1KHZ + */ +void led_init(led_context_t *context, int pwm_freq, int pwm_handler_freq) +{ + // save context + led_context = context; + // Initial values + led_red_intensity = 0; + led_red_state = 1; // state is inverted (LEDs are sinking current into MCU) + led_green_intensity = 0; + led_green_state = 1; + led_blue_intensity = 0; + led_blue_state = 1; + // calculate PWM counter overflow value (max value) + // e.g. for 1 kHz handler freq and 25 Hz PWM freq, we only have + // resolution of 40 steps for pwm + led_pwm_max = pwm_handler_freq / pwm_freq; +} diff --git a/fw/Core/Src/main.c b/fw/Core/Src/main.c index da15cd1..c55584d 100644 --- a/fw/Core/Src/main.c +++ b/fw/Core/Src/main.c @@ -94,6 +94,16 @@ int main(void) /* USER CODE BEGIN 2 */ LL_I2C_Enable(I2C1); LL_LPUART_Enable(LPUART1); + /* LED PWM context */ + led_context_t led_context; + led_context.red_led_port = LED_R_GPIO_Port; + led_context.green_led_port = LED_G_GPIO_Port; + led_context.blue_led_port = LED_B_GPIO_Port; + led_context.red_led_pin = LED_R_Pin; + led_context.green_led_pin = LED_G_Pin; + led_context.blue_led_pin = LED_B_Pin; + led_init(&led_context, 50, 1000); + led_set_color(0, 20, 0); /* USER CODE END 2 */ /* Infinite loop */ diff --git a/fw/Core/Src/stm32l0xx_it.c b/fw/Core/Src/stm32l0xx_it.c index 28664a1..8b89762 100644 --- a/fw/Core/Src/stm32l0xx_it.c +++ b/fw/Core/Src/stm32l0xx_it.c @@ -23,6 +23,7 @@ #include "stm32l0xx_it.h" /* Private includes ----------------------------------------------------------*/ /* USER CODE BEGIN Includes */ +#include "led.h" /* USER CODE END Includes */ /* Private typedef -----------------------------------------------------------*/ @@ -130,6 +131,7 @@ void SysTick_Handler(void) /* USER CODE END SysTick_IRQn 0 */ HAL_IncTick(); /* USER CODE BEGIN SysTick_IRQn 1 */ + led_pwm_handler(); /* USER CODE END SysTick_IRQn 1 */ } diff --git a/fw/Debug/Core/Src/led.su b/fw/Debug/Core/Src/led.su deleted file mode 100644 index fe5e74f..0000000 --- a/fw/Debug/Core/Src/led.su +++ /dev/null @@ -1,4 +0,0 @@ -led.c:36:6:led_set_color 24 static -led.c:47:6:led_off 8 static -led.c:59:6:led_pwm_handler 24 static -led.c:105:6:led_init 24 static diff --git a/fw/Debug/Core/Src/main.d b/fw/Debug/Core/Src/main.d deleted file mode 100644 index 29d4f24..0000000 --- a/fw/Debug/Core/Src/main.d +++ /dev/null @@ -1,111 +0,0 @@ -Core/Src/main.o: ../Core/Src/main.c ../Core/Inc/main.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_lpuart.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_system.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_bus.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_utils.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_pwr.h - -../Core/Inc/main.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_lpuart.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_system.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_bus.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_utils.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_pwr.h: diff --git a/fw/Debug/Core/Src/main.o b/fw/Debug/Core/Src/main.o deleted file mode 100644 index d8390c4..0000000 Binary files a/fw/Debug/Core/Src/main.o and /dev/null differ diff --git a/fw/Debug/Core/Src/main.su b/fw/Debug/Core/Src/main.su deleted file mode 100644 index 31270b6..0000000 --- a/fw/Debug/Core/Src/main.su +++ /dev/null @@ -1,4 +0,0 @@ -stm32l0xx_ll_bus.h:987:22:LL_IOP_GRP1_EnableClock 8 static -main.c:129:6:SystemClock_Config 104 static,ignoring_inline_asm -main.c:67:5:main 88 static -main.c:398:6:Error_Handler 0 static,ignoring_inline_asm diff --git a/fw/Debug/Core/Src/stm32l0xx_hal_msp.d b/fw/Debug/Core/Src/stm32l0xx_hal_msp.d deleted file mode 100644 index 521e283..0000000 --- a/fw/Debug/Core/Src/stm32l0xx_hal_msp.d +++ /dev/null @@ -1,111 +0,0 @@ -Core/Src/stm32l0xx_hal_msp.o: ../Core/Src/stm32l0xx_hal_msp.c \ - ../Core/Inc/main.h ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_lpuart.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_system.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_bus.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_utils.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_pwr.h - -../Core/Inc/main.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_lpuart.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_system.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_bus.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_utils.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_pwr.h: diff --git a/fw/Debug/Core/Src/stm32l0xx_hal_msp.o b/fw/Debug/Core/Src/stm32l0xx_hal_msp.o deleted file mode 100644 index ed5c468..0000000 Binary files a/fw/Debug/Core/Src/stm32l0xx_hal_msp.o and /dev/null differ diff --git a/fw/Debug/Core/Src/stm32l0xx_hal_msp.su b/fw/Debug/Core/Src/stm32l0xx_hal_msp.su deleted file mode 100644 index 9b75000..0000000 --- a/fw/Debug/Core/Src/stm32l0xx_hal_msp.su +++ /dev/null @@ -1 +0,0 @@ -stm32l0xx_hal_msp.c:64:6:HAL_MspInit 0 static diff --git a/fw/Debug/Core/Src/stm32l0xx_it.d b/fw/Debug/Core/Src/stm32l0xx_it.d deleted file mode 100644 index 69cb03a..0000000 --- a/fw/Debug/Core/Src/stm32l0xx_it.d +++ /dev/null @@ -1,114 +0,0 @@ -Core/Src/stm32l0xx_it.o: ../Core/Src/stm32l0xx_it.c ../Core/Inc/main.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_lpuart.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_system.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_bus.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_utils.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_pwr.h \ - ../Core/Inc/stm32l0xx_it.h - -../Core/Inc/main.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_lpuart.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_system.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_bus.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_utils.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_pwr.h: - -../Core/Inc/stm32l0xx_it.h: diff --git a/fw/Debug/Core/Src/stm32l0xx_it.o b/fw/Debug/Core/Src/stm32l0xx_it.o deleted file mode 100644 index e53ac03..0000000 Binary files a/fw/Debug/Core/Src/stm32l0xx_it.o and /dev/null differ diff --git a/fw/Debug/Core/Src/stm32l0xx_it.su b/fw/Debug/Core/Src/stm32l0xx_it.su deleted file mode 100644 index af75b7b..0000000 --- a/fw/Debug/Core/Src/stm32l0xx_it.su +++ /dev/null @@ -1,6 +0,0 @@ -stm32l0xx_it.c:70:6:NMI_Handler 0 static -stm32l0xx_it.c:85:6:HardFault_Handler 0 static -stm32l0xx_it.c:100:6:SVC_Handler 0 static -stm32l0xx_it.c:113:6:PendSV_Handler 0 static -stm32l0xx_it.c:126:6:SysTick_Handler 8 static -stm32l0xx_it.c:146:6:DMA1_Channel2_3_IRQHandler 0 static diff --git a/fw/Debug/Core/Src/subdir.mk b/fw/Debug/Core/Src/subdir.mk deleted file mode 100644 index 8b0d555..0000000 --- a/fw/Debug/Core/Src/subdir.mk +++ /dev/null @@ -1,45 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -# Toolchain: GNU Tools for STM32 (9-2020-q2-update) -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Core/Src/main.c \ -../Core/Src/stm32l0xx_hal_msp.c \ -../Core/Src/stm32l0xx_it.c \ -../Core/Src/syscalls.c \ -../Core/Src/sysmem.c \ -../Core/Src/system_stm32l0xx.c - -OBJS += \ -./Core/Src/main.o \ -./Core/Src/stm32l0xx_hal_msp.o \ -./Core/Src/stm32l0xx_it.o \ -./Core/Src/syscalls.o \ -./Core/Src/sysmem.o \ -./Core/Src/system_stm32l0xx.o - -C_DEPS += \ -./Core/Src/main.d \ -./Core/Src/stm32l0xx_hal_msp.d \ -./Core/Src/stm32l0xx_it.d \ -./Core/Src/syscalls.d \ -./Core/Src/sysmem.d \ -./Core/Src/system_stm32l0xx.d - - -# Each subdirectory must supply rules for building sources it contributes -Core/Src/main.o: ../Core/Src/main.c Core/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Core/Src/main.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Core/Src/stm32l0xx_hal_msp.o: ../Core/Src/stm32l0xx_hal_msp.c Core/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Core/Src/stm32l0xx_hal_msp.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Core/Src/stm32l0xx_it.o: ../Core/Src/stm32l0xx_it.c Core/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Core/Src/stm32l0xx_it.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Core/Src/syscalls.o: ../Core/Src/syscalls.c Core/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Core/Src/syscalls.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Core/Src/sysmem.o: ../Core/Src/sysmem.c Core/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Core/Src/sysmem.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Core/Src/system_stm32l0xx.o: ../Core/Src/system_stm32l0xx.c Core/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Core/Src/system_stm32l0xx.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" - diff --git a/fw/Debug/Core/Src/syscalls.d b/fw/Debug/Core/Src/syscalls.d deleted file mode 100644 index 8667c70..0000000 --- a/fw/Debug/Core/Src/syscalls.d +++ /dev/null @@ -1 +0,0 @@ -Core/Src/syscalls.o: ../Core/Src/syscalls.c diff --git a/fw/Debug/Core/Src/syscalls.o b/fw/Debug/Core/Src/syscalls.o deleted file mode 100644 index de72b01..0000000 Binary files a/fw/Debug/Core/Src/syscalls.o and /dev/null differ diff --git a/fw/Debug/Core/Src/syscalls.su b/fw/Debug/Core/Src/syscalls.su deleted file mode 100644 index c872039..0000000 --- a/fw/Debug/Core/Src/syscalls.su +++ /dev/null @@ -1,18 +0,0 @@ -syscalls.c:48:6:initialise_monitor_handles 0 static -syscalls.c:52:5:_getpid 0 static -syscalls.c:57:5:_kill 8 static -syscalls.c:63:6:_exit 8 static -syscalls.c:69:27:_read 16 static -syscalls.c:81:27:_write 16 static -syscalls.c:92:5:_close 0 static -syscalls.c:98:5:_fstat 0 static -syscalls.c:104:5:_isatty 0 static -syscalls.c:109:5:_lseek 0 static -syscalls.c:114:5:_open 0 static -syscalls.c:120:5:_wait 8 static -syscalls.c:126:5:_unlink 8 static -syscalls.c:132:5:_times 0 static -syscalls.c:137:5:_stat 0 static -syscalls.c:143:5:_link 8 static -syscalls.c:149:5:_fork 8 static -syscalls.c:155:5:_execve 8 static diff --git a/fw/Debug/Core/Src/sysmem.d b/fw/Debug/Core/Src/sysmem.d deleted file mode 100644 index 74fecf9..0000000 --- a/fw/Debug/Core/Src/sysmem.d +++ /dev/null @@ -1 +0,0 @@ -Core/Src/sysmem.o: ../Core/Src/sysmem.c diff --git a/fw/Debug/Core/Src/sysmem.o b/fw/Debug/Core/Src/sysmem.o deleted file mode 100644 index c1f7cb8..0000000 Binary files a/fw/Debug/Core/Src/sysmem.o and /dev/null differ diff --git a/fw/Debug/Core/Src/sysmem.su b/fw/Debug/Core/Src/sysmem.su deleted file mode 100644 index c9ac5ce..0000000 --- a/fw/Debug/Core/Src/sysmem.su +++ /dev/null @@ -1 +0,0 @@ -sysmem.c:54:7:_sbrk 8 static diff --git a/fw/Debug/Core/Src/system_stm32l0xx.d b/fw/Debug/Core/Src/system_stm32l0xx.d deleted file mode 100644 index a40be12..0000000 --- a/fw/Debug/Core/Src/system_stm32l0xx.d +++ /dev/null @@ -1,76 +0,0 @@ -Core/Src/system_stm32l0xx.o: ../Core/Src/system_stm32l0xx.c \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: diff --git a/fw/Debug/Core/Src/system_stm32l0xx.o b/fw/Debug/Core/Src/system_stm32l0xx.o deleted file mode 100644 index c6cd1f1..0000000 Binary files a/fw/Debug/Core/Src/system_stm32l0xx.o and /dev/null differ diff --git a/fw/Debug/Core/Src/system_stm32l0xx.su b/fw/Debug/Core/Src/system_stm32l0xx.su deleted file mode 100644 index f548a45..0000000 --- a/fw/Debug/Core/Src/system_stm32l0xx.su +++ /dev/null @@ -1,2 +0,0 @@ -system_stm32l0xx.c:154:6:SystemInit 0 static -system_stm32l0xx.c:200:6:SystemCoreClockUpdate 16 static diff --git a/fw/Debug/Core/Startup/startup_stm32l011f4ux.d b/fw/Debug/Core/Startup/startup_stm32l011f4ux.d deleted file mode 100644 index 7f6eea2..0000000 --- a/fw/Debug/Core/Startup/startup_stm32l011f4ux.d +++ /dev/null @@ -1,2 +0,0 @@ -Core/Startup/startup_stm32l011f4ux.o: \ - ../Core/Startup/startup_stm32l011f4ux.s diff --git a/fw/Debug/Core/Startup/startup_stm32l011f4ux.o b/fw/Debug/Core/Startup/startup_stm32l011f4ux.o deleted file mode 100644 index 6e4550b..0000000 Binary files a/fw/Debug/Core/Startup/startup_stm32l011f4ux.o and /dev/null differ diff --git a/fw/Debug/Core/Startup/subdir.mk b/fw/Debug/Core/Startup/subdir.mk deleted file mode 100644 index 3fa16c8..0000000 --- a/fw/Debug/Core/Startup/subdir.mk +++ /dev/null @@ -1,20 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -# Toolchain: GNU Tools for STM32 (9-2020-q2-update) -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -S_SRCS += \ -../Core/Startup/startup_stm32l011f4ux.s - -OBJS += \ -./Core/Startup/startup_stm32l011f4ux.o - -S_DEPS += \ -./Core/Startup/startup_stm32l011f4ux.d - - -# Each subdirectory must supply rules for building sources it contributes -Core/Startup/startup_stm32l011f4ux.o: ../Core/Startup/startup_stm32l011f4ux.s Core/Startup/subdir.mk - arm-none-eabi-gcc -mcpu=cortex-m0plus -g3 -c -x assembler-with-cpp -MMD -MP -MF"Core/Startup/startup_stm32l011f4ux.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" "$<" - diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.d deleted file mode 100644 index 18012de..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.d +++ /dev/null @@ -1,77 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o deleted file mode 100644 index c098b18..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.su deleted file mode 100644 index 11aafee..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.su +++ /dev/null @@ -1,31 +0,0 @@ -stm32l0xx_hal.c:204:13:HAL_MspInit 0 static -stm32l0xx_hal.c:215:13:HAL_MspDeInit 0 static -stm32l0xx_hal.c:178:19:HAL_DeInit 8 static -stm32l0xx_hal.c:238:26:HAL_InitTick 16 static -stm32l0xx_hal.c:140:19:HAL_Init 8 static -stm32l0xx_hal.c:294:13:HAL_IncTick 0 static -stm32l0xx_hal.c:305:17:HAL_GetTick 0 static -stm32l0xx_hal.c:314:10:HAL_GetTickPrio 0 static -stm32l0xx_hal.c:323:19:HAL_SetTickFreq 16 static -stm32l0xx_hal.c:355:21:HAL_GetTickFreq 0 static -stm32l0xx_hal.c:371:13:HAL_Delay 16 static -stm32l0xx_hal.c:397:13:HAL_SuspendTick 0 static -stm32l0xx_hal.c:413:13:HAL_ResumeTick 0 static -stm32l0xx_hal.c:423:10:HAL_GetHalVersion 0 static -stm32l0xx_hal.c:432:10:HAL_GetREVID 0 static -stm32l0xx_hal.c:441:10:HAL_GetDEVID 0 static -stm32l0xx_hal.c:450:10:HAL_GetUIDw0 0 static -stm32l0xx_hal.c:459:10:HAL_GetUIDw1 0 static -stm32l0xx_hal.c:468:10:HAL_GetUIDw2 0 static -stm32l0xx_hal.c:497:6:HAL_DBGMCU_EnableDBGSleepMode 0 static -stm32l0xx_hal.c:506:6:HAL_DBGMCU_DisableDBGSleepMode 0 static -stm32l0xx_hal.c:515:6:HAL_DBGMCU_EnableDBGStopMode 0 static -stm32l0xx_hal.c:524:6:HAL_DBGMCU_DisableDBGStopMode 0 static -stm32l0xx_hal.c:533:6:HAL_DBGMCU_EnableDBGStandbyMode 0 static -stm32l0xx_hal.c:542:6:HAL_DBGMCU_DisableDBGStandbyMode 0 static -stm32l0xx_hal.c:556:6:HAL_DBGMCU_DBG_EnableLowPowerConfig 0 static -stm32l0xx_hal.c:573:6:HAL_DBGMCU_DBG_DisableLowPowerConfig 0 static -stm32l0xx_hal.c:610:11:HAL_SYSCFG_GetBootMode 0 static -stm32l0xx_hal.c:627:6:HAL_SYSCFG_VREFINT_OutputSelect 0 static -stm32l0xx_hal.c:641:6:HAL_SYSCFG_Enable_Lock_VREFINT 0 static -stm32l0xx_hal.c:651:6:HAL_SYSCFG_Disable_Lock_VREFINT 0 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.d deleted file mode 100644 index c045e11..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.d +++ /dev/null @@ -1,77 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o deleted file mode 100644 index 2b4e0ee..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.su deleted file mode 100644 index f5ff9a7..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.su +++ /dev/null @@ -1,12 +0,0 @@ -stm32l0xx_hal_cortex.c:132:6:HAL_NVIC_SetPriority 12 static -stm32l0xx_hal_cortex.c:148:6:HAL_NVIC_EnableIRQ 0 static -stm32l0xx_hal_cortex.c:164:6:HAL_NVIC_DisableIRQ 0 static,ignoring_inline_asm -stm32l0xx_hal_cortex.c:177:6:HAL_NVIC_SystemReset 0 static,ignoring_inline_asm -stm32l0xx_hal_cortex.c:190:10:HAL_SYSTICK_Config 0 static -stm32l0xx_hal_cortex.c:222:10:HAL_NVIC_GetPriority 0 static -stm32l0xx_hal_cortex.c:235:6:HAL_NVIC_SetPendingIRQ 0 static -stm32l0xx_hal_cortex.c:250:10:HAL_NVIC_GetPendingIRQ 0 static -stm32l0xx_hal_cortex.c:263:6:HAL_NVIC_ClearPendingIRQ 0 static -stm32l0xx_hal_cortex.c:278:6:HAL_SYSTICK_CLKSourceConfig 0 static -stm32l0xx_hal_cortex.c:305:13:HAL_SYSTICK_Callback 0 static -stm32l0xx_hal_cortex.c:296:6:HAL_SYSTICK_IRQHandler 8 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.d deleted file mode 100644 index 1d58e61..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.d +++ /dev/null @@ -1,77 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o deleted file mode 100644 index 454136b..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.su deleted file mode 100644 index 4e26e73..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.su +++ /dev/null @@ -1,12 +0,0 @@ -stm32l0xx_hal_dma.c:139:19:HAL_DMA_Init 24 static -stm32l0xx_hal_dma.c:214:19:HAL_DMA_DeInit 16 static -stm32l0xx_hal_dma.c:294:19:HAL_DMA_Start 32 static -stm32l0xx_hal_dma.c:337:19:HAL_DMA_Start_IT 32 static -stm32l0xx_hal_dma.c:392:19:HAL_DMA_Abort 12 static -stm32l0xx_hal_dma.c:433:19:HAL_DMA_Abort_IT 16 static -stm32l0xx_hal_dma.c:478:19:HAL_DMA_PollForTransfer 40 static -stm32l0xx_hal_dma.c:579:6:HAL_DMA_IRQHandler 24 static -stm32l0xx_hal_dma.c:673:19:HAL_DMA_RegisterCallback 12 static -stm32l0xx_hal_dma.c:724:19:HAL_DMA_UnRegisterCallback 12 static -stm32l0xx_hal_dma.c:802:22:HAL_DMA_GetState 0 static -stm32l0xx_hal_dma.c:814:10:HAL_DMA_GetError 0 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.d deleted file mode 100644 index 445f568..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.d +++ /dev/null @@ -1,77 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o deleted file mode 100644 index 0472394..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.su deleted file mode 100644 index 0a1159b..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.su +++ /dev/null @@ -1,9 +0,0 @@ -stm32l0xx_hal_exti.c:143:19:HAL_EXTI_SetConfigLine 16 static -stm32l0xx_hal_exti.c:238:19:HAL_EXTI_GetConfigLine 20 static -stm32l0xx_hal_exti.c:327:19:HAL_EXTI_ClearConfigLine 12 static -stm32l0xx_hal_exti.c:380:19:HAL_EXTI_RegisterCallback 0 static -stm32l0xx_hal_exti.c:405:19:HAL_EXTI_GetHandle 0 static -stm32l0xx_hal_exti.c:445:6:HAL_EXTI_IRQHandler 8 static -stm32l0xx_hal_exti.c:477:10:HAL_EXTI_GetPending 0 static -stm32l0xx_hal_exti.c:506:6:HAL_EXTI_ClearPending 0 static -stm32l0xx_hal_exti.c:527:6:HAL_EXTI_GenerateSWI 0 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.d deleted file mode 100644 index fac570a..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.d +++ /dev/null @@ -1,77 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o deleted file mode 100644 index b1d6d7e..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.su deleted file mode 100644 index 66e2d88..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.su +++ /dev/null @@ -1,13 +0,0 @@ -stm32l0xx_hal_flash.c:703:13:FLASH_SetErrorCode 12 static -stm32l0xx_hal_flash.c:273:19:HAL_FLASH_Program_IT 16 static -stm32l0xx_hal_flash.c:428:13:HAL_FLASH_EndOfOperationCallback 0 static -stm32l0xx_hal_flash.c:445:13:HAL_FLASH_OperationErrorCallback 0 static -stm32l0xx_hal_flash.c:304:6:HAL_FLASH_IRQHandler 16 static -stm32l0xx_hal_flash.c:478:19:HAL_FLASH_Unlock 8 static,ignoring_inline_asm -stm32l0xx_hal_flash.c:527:19:HAL_FLASH_Lock 0 static -stm32l0xx_hal_flash.c:542:19:HAL_FLASH_OB_Unlock 0 static,ignoring_inline_asm -stm32l0xx_hal_flash.c:579:19:HAL_FLASH_OB_Lock 0 static -stm32l0xx_hal_flash.c:624:10:HAL_FLASH_GetError 0 static -stm32l0xx_hal_flash.c:646:19:FLASH_WaitForLastOperation 16 static -stm32l0xx_hal_flash.c:231:19:HAL_FLASH_Program 16 static -stm32l0xx_hal_flash.c:592:19:HAL_FLASH_OB_Launch 8 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.d deleted file mode 100644 index 7827c1f..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.d +++ /dev/null @@ -1,77 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o deleted file mode 100644 index 52b7b72..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.su deleted file mode 100644 index 2342f6d..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.su +++ /dev/null @@ -1,16 +0,0 @@ -stm32l0xx_hal_flash_ex.c:1046:26:FLASH_OB_ProtectedSectorsConfig 16 static -stm32l0xx_hal_flash_ex.c:327:19:HAL_FLASHEx_OBProgram 32 static -stm32l0xx_hal_flash_ex.c:410:6:HAL_FLASHEx_OBGetConfig 0 static -stm32l0xx_hal_flash_ex.c:443:19:HAL_FLASHEx_AdvOBProgram 8 static -stm32l0xx_hal_flash_ex.c:486:6:HAL_FLASHEx_AdvOBGetConfig 0 static -stm32l0xx_hal_flash_ex.c:526:19:HAL_FLASHEx_OB_SelectPCROP 8 static -stm32l0xx_hal_flash_ex.c:568:19:HAL_FLASHEx_OB_DeSelectPCROP 8 static -stm32l0xx_hal_flash_ex.c:634:19:HAL_FLASHEx_DATAEEPROM_Unlock 0 static,ignoring_inline_asm -stm32l0xx_hal_flash_ex.c:664:19:HAL_FLASHEx_DATAEEPROM_Lock 0 static -stm32l0xx_hal_flash_ex.c:682:19:HAL_FLASHEx_DATAEEPROM_Erase 8 static -stm32l0xx_hal_flash_ex.c:724:21:HAL_FLASHEx_DATAEEPROM_Program 24 static -stm32l0xx_hal_flash_ex.c:780:6:HAL_FLASHEx_DATAEEPROM_EnableFixedTimeProgram 0 static -stm32l0xx_hal_flash_ex.c:789:6:HAL_FLASHEx_DATAEEPROM_DisableFixedTimeProgram 0 static -stm32l0xx_hal_flash_ex.c:1246:6:FLASH_PageErase 8 static -stm32l0xx_hal_flash_ex.c:171:19:HAL_FLASHEx_Erase 24 static -stm32l0xx_hal_flash_ex.c:235:19:HAL_FLASHEx_Erase_IT 32 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.d deleted file mode 100644 index 56317e1..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.d +++ /dev/null @@ -1,77 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o deleted file mode 100644 index 3b46d67..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.su deleted file mode 100644 index 66b7015..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.su +++ /dev/null @@ -1,5 +0,0 @@ -stm32l0xx_hal_flash_ramfunc.c:458:37:FLASHRAM_WaitForLastOperation.constprop 12 static -stm32l0xx_hal_flash_ramfunc.c:115:30:HAL_FLASHEx_EnableRunPowerDown 0 static -stm32l0xx_hal_flash_ramfunc.c:128:30:HAL_FLASHEx_DisableRunPowerDown 0 static -stm32l0xx_hal_flash_ramfunc.c:305:30:HAL_FLASHEx_HalfPageProgram 16 static,ignoring_inline_asm -stm32l0xx_hal_flash_ramfunc.c:376:30:HAL_FLASHEx_GetError 0 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.d deleted file mode 100644 index c536a70..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.d +++ /dev/null @@ -1,77 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o deleted file mode 100644 index 5b74693..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.su deleted file mode 100644 index 74261e1..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.su +++ /dev/null @@ -1,8 +0,0 @@ -stm32l0xx_hal_gpio.c:167:6:HAL_GPIO_Init 40 static -stm32l0xx_hal_gpio.c:292:6:HAL_GPIO_DeInit 40 static -stm32l0xx_hal_gpio.c:373:15:HAL_GPIO_ReadPin 0 static -stm32l0xx_hal_gpio.c:409:6:HAL_GPIO_WritePin 0 static -stm32l0xx_hal_gpio.c:433:6:HAL_GPIO_TogglePin 0 static -stm32l0xx_hal_gpio.c:460:19:HAL_GPIO_LockPin 8 static -stm32l0xx_hal_gpio.c:508:13:HAL_GPIO_EXTI_Callback 0 static -stm32l0xx_hal_gpio.c:493:6:HAL_GPIO_EXTI_IRQHandler 8 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.d deleted file mode 100644 index b4e166f..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.d +++ /dev/null @@ -1,77 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o deleted file mode 100644 index 802181e..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.su deleted file mode 100644 index b02113a..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.su +++ /dev/null @@ -1,79 +0,0 @@ -stm32l0xx_hal_i2c.c:6005:13:I2C_Flush_TXDR 0 static -stm32l0xx_hal_i2c.c:6453:13:I2C_TransferConfig 12 static -stm32l0xx_hal_i2c.c:6476:13:I2C_Enable_IRQ 8 static -stm32l0xx_hal_i2c.c:6547:13:I2C_Disable_IRQ 8 static -stm32l0xx_hal_i2c.c:6610:13:I2C_ConvertOtherXferOptions 0 static -stm32l0xx_hal_i2c.c:6385:26:I2C_IsAcknowledgeFailed 24 static -stm32l0xx_hal_i2c.c:6322:26:I2C_WaitOnRXNEFlagUntilTimeout 24 static -stm32l0xx_hal_i2c.c:6288:26:I2C_WaitOnSTOPFlagUntilTimeout 24 static -stm32l0xx_hal_i2c.c:6220:26:I2C_WaitOnFlagUntilTimeout 24 static -stm32l0xx_hal_i2c.c:6251:26:I2C_WaitOnTXISFlagUntilTimeout 24 static -stm32l0xx_hal_i2c.c:5178:26:I2C_RequestMemoryWrite 32 static -stm32l0xx_hal_i2c.c:5232:26:I2C_RequestMemoryRead 32 static -stm32l0xx_hal_i2c.c:631:13:HAL_I2C_MspInit 0 static -stm32l0xx_hal_i2c.c:476:19:HAL_I2C_Init 16 static -stm32l0xx_hal_i2c.c:647:13:HAL_I2C_MspDeInit 0 static -stm32l0xx_hal_i2c.c:585:19:HAL_I2C_DeInit 16 static -stm32l0xx_hal_i2c.c:1068:19:HAL_I2C_Master_Transmit 48 static -stm32l0xx_hal_i2c.c:1183:19:HAL_I2C_Master_Receive 48 static -stm32l0xx_hal_i2c.c:1297:19:HAL_I2C_Slave_Transmit 48 static -stm32l0xx_hal_i2c.c:1434:19:HAL_I2C_Slave_Receive 56 static -stm32l0xx_hal_i2c.c:1560:19:HAL_I2C_Master_Transmit_IT 40 static -stm32l0xx_hal_i2c.c:1630:19:HAL_I2C_Master_Receive_IT 40 static -stm32l0xx_hal_i2c.c:1697:19:HAL_I2C_Slave_Transmit_IT 24 static -stm32l0xx_hal_i2c.c:1746:19:HAL_I2C_Slave_Receive_IT 24 static -stm32l0xx_hal_i2c.c:1797:19:HAL_I2C_Master_Transmit_DMA 48 static -stm32l0xx_hal_i2c.c:1941:19:HAL_I2C_Master_Receive_DMA 48 static -stm32l0xx_hal_i2c.c:2083:19:HAL_I2C_Slave_Transmit_DMA 32 static -stm32l0xx_hal_i2c.c:2186:19:HAL_I2C_Slave_Receive_DMA 32 static -stm32l0xx_hal_i2c.c:2293:19:HAL_I2C_Mem_Write 56 static -stm32l0xx_hal_i2c.c:2428:19:HAL_I2C_Mem_Read 64 static -stm32l0xx_hal_i2c.c:2561:19:HAL_I2C_Mem_Write_IT 56 static -stm32l0xx_hal_i2c.c:2653:19:HAL_I2C_Mem_Read_IT 56 static -stm32l0xx_hal_i2c.c:2744:19:HAL_I2C_Mem_Write_DMA 56 static -stm32l0xx_hal_i2c.c:2889:19:HAL_I2C_Mem_Read_DMA 56 static -stm32l0xx_hal_i2c.c:3031:19:HAL_I2C_IsDeviceReady 56 static -stm32l0xx_hal_i2c.c:3172:19:HAL_I2C_Master_Seq_Transmit_IT 40 static -stm32l0xx_hal_i2c.c:3257:19:HAL_I2C_Master_Seq_Transmit_DMA 56 static -stm32l0xx_hal_i2c.c:3420:19:HAL_I2C_Master_Seq_Receive_IT 40 static -stm32l0xx_hal_i2c.c:3505:19:HAL_I2C_Master_Seq_Receive_DMA 56 static -stm32l0xx_hal_i2c.c:3666:19:HAL_I2C_Slave_Seq_Transmit_IT 40 static -stm32l0xx_hal_i2c.c:3762:19:HAL_I2C_Slave_Seq_Transmit_DMA 40 static -stm32l0xx_hal_i2c.c:3942:19:HAL_I2C_Slave_Seq_Receive_IT 40 static -stm32l0xx_hal_i2c.c:4038:19:HAL_I2C_Slave_Seq_Receive_DMA 48 static -stm32l0xx_hal_i2c.c:4214:19:HAL_I2C_EnableListen_IT 8 static -stm32l0xx_hal_i2c.c:4238:19:HAL_I2C_DisableListen_IT 16 static -stm32l0xx_hal_i2c.c:4271:19:HAL_I2C_Master_Abort_IT 32 static -stm32l0xx_hal_i2c.c:4333:6:HAL_I2C_EV_IRQHandler 8 static -stm32l0xx_hal_i2c.c:4401:13:HAL_I2C_MasterTxCpltCallback 0 static -stm32l0xx_hal_i2c.c:4417:13:HAL_I2C_MasterRxCpltCallback 0 static -stm32l0xx_hal_i2c.c:5375:13:I2C_ITMasterSeqCplt 16 static -stm32l0xx_hal_i2c.c:4432:13:HAL_I2C_SlaveTxCpltCallback 0 static -stm32l0xx_hal_i2c.c:4448:13:HAL_I2C_SlaveRxCpltCallback 0 static -stm32l0xx_hal_i2c.c:5428:13:I2C_ITSlaveSeqCplt 8 static -stm32l0xx_hal_i2c.c:6074:13:I2C_DMASlaveTransmitCplt 8 static -stm32l0xx_hal_i2c.c:6149:13:I2C_DMASlaveReceiveCplt 8 static -stm32l0xx_hal_i2c.c:4466:13:HAL_I2C_AddrCallback 0 static -stm32l0xx_hal_i2c.c:5280:13:I2C_ITAddrCplt.isra.0 32 static -stm32l0xx_hal_i2c.c:4484:13:HAL_I2C_ListenCpltCallback 0 static -stm32l0xx_hal_i2c.c:5804:13:I2C_ITListenCplt 8 static -stm32l0xx_hal_i2c.c:4500:13:HAL_I2C_MemTxCpltCallback 0 static -stm32l0xx_hal_i2c.c:4516:13:HAL_I2C_MemRxCpltCallback 0 static -stm32l0xx_hal_i2c.c:4532:13:HAL_I2C_ErrorCallback 0 static -stm32l0xx_hal_i2c.c:4548:13:HAL_I2C_AbortCpltCallback 0 static -stm32l0xx_hal_i2c.c:5967:13:I2C_TreatErrorCallback 8 static -stm32l0xx_hal_i2c.c:5855:13:I2C_ITError 16 static -stm32l0xx_hal_i2c.c:5645:13:I2C_ITSlaveCplt 32 static -stm32l0xx_hal_i2c.c:4768:26:I2C_Slave_ISR_IT 32 static -stm32l0xx_hal_i2c.c:5502:13:I2C_ITMasterCplt 24 static -stm32l0xx_hal_i2c.c:4631:26:I2C_Master_ISR_IT 32 static -stm32l0xx_hal_i2c.c:5038:26:I2C_Slave_ISR_DMA 32 static -stm32l0xx_hal_i2c.c:4903:26:I2C_Master_ISR_DMA 24 static -stm32l0xx_hal_i2c.c:6176:13:I2C_DMAError 8 static -stm32l0xx_hal_i2c.c:6026:13:I2C_DMAMasterTransmitCplt 8 static -stm32l0xx_hal_i2c.c:6101:13:I2C_DMAMasterReceiveCplt 8 static -stm32l0xx_hal_i2c.c:4352:6:HAL_I2C_ER_IRQHandler 16 static -stm32l0xx_hal_i2c.c:6193:13:I2C_DMAAbort 8 static -stm32l0xx_hal_i2c.c:4583:22:HAL_I2C_GetState 0 static -stm32l0xx_hal_i2c.c:4595:21:HAL_I2C_GetMode 0 static -stm32l0xx_hal_i2c.c:4606:10:HAL_I2C_GetError 0 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.d deleted file mode 100644 index 4757393..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.d +++ /dev/null @@ -1,77 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o deleted file mode 100644 index e509582..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.su deleted file mode 100644 index 86511b8..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.su +++ /dev/null @@ -1,6 +0,0 @@ -stm32l0xx_hal_i2c_ex.c:97:19:HAL_I2CEx_ConfigAnalogFilter 20 static -stm32l0xx_hal_i2c_ex.c:141:19:HAL_I2CEx_ConfigDigitalFilter 20 static -stm32l0xx_hal_i2c_ex.c:192:19:HAL_I2CEx_EnableWakeUp 16 static -stm32l0xx_hal_i2c_ex.c:231:19:HAL_I2CEx_DisableWakeUp 16 static -stm32l0xx_hal_i2c_ex.c:280:6:HAL_I2CEx_EnableFastModePlus 0 static -stm32l0xx_hal_i2c_ex.c:307:6:HAL_I2CEx_DisableFastModePlus 0 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.d deleted file mode 100644 index 31f49b6..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.d +++ /dev/null @@ -1,77 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o deleted file mode 100644 index f2cca91..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.su deleted file mode 100644 index eb3608d..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.su +++ /dev/null @@ -1,17 +0,0 @@ -stm32l0xx_hal_pwr.c:80:6:HAL_PWR_DeInit 0 static -stm32l0xx_hal_pwr.c:327:6:HAL_PWR_EnableBkUpAccess 0 static -stm32l0xx_hal_pwr.c:340:6:HAL_PWR_DisableBkUpAccess 0 static -stm32l0xx_hal_pwr.c:356:6:HAL_PWR_ConfigPVD 0 static -stm32l0xx_hal_pwr.c:399:6:HAL_PWR_EnablePVD 0 static -stm32l0xx_hal_pwr.c:409:6:HAL_PWR_DisablePVD 0 static -stm32l0xx_hal_pwr.c:425:6:HAL_PWR_EnableWakeUpPin 0 static -stm32l0xx_hal_pwr.c:442:6:HAL_PWR_DisableWakeUpPin 0 static -stm32l0xx_hal_pwr.c:465:6:HAL_PWR_EnterSLEEPMode 20 static,ignoring_inline_asm -stm32l0xx_hal_pwr.c:546:6:HAL_PWR_EnterSTOPMode 20 static,ignoring_inline_asm -stm32l0xx_hal_pwr.c:615:6:HAL_PWR_EnterSTANDBYMode 0 static,ignoring_inline_asm -stm32l0xx_hal_pwr.c:639:6:HAL_PWR_EnableSleepOnExit 0 static -stm32l0xx_hal_pwr.c:652:6:HAL_PWR_DisableSleepOnExit 0 static -stm32l0xx_hal_pwr.c:665:6:HAL_PWR_EnableSEVOnPend 0 static -stm32l0xx_hal_pwr.c:678:6:HAL_PWR_DisableSEVOnPend 0 static -stm32l0xx_hal_pwr.c:707:13:HAL_PWR_PVDCallback 0 static -stm32l0xx_hal_pwr.c:690:6:HAL_PWR_PVD_IRQHandler 16 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.d deleted file mode 100644 index 730ee4c..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.d +++ /dev/null @@ -1,77 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o deleted file mode 100644 index 7b463b8..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.su deleted file mode 100644 index 3a06fb6..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.su +++ /dev/null @@ -1,7 +0,0 @@ -stm32l0xx_hal_pwr_ex.c:70:10:HAL_PWREx_GetVoltageRange 0 static -stm32l0xx_hal_pwr_ex.c:83:6:HAL_PWREx_EnableFastWakeUp 0 static -stm32l0xx_hal_pwr_ex.c:93:6:HAL_PWREx_DisableFastWakeUp 0 static -stm32l0xx_hal_pwr_ex.c:103:6:HAL_PWREx_EnableUltraLowPower 0 static -stm32l0xx_hal_pwr_ex.c:113:6:HAL_PWREx_DisableUltraLowPower 0 static -stm32l0xx_hal_pwr_ex.c:131:6:HAL_PWREx_EnableLowPowerRunMode 0 static -stm32l0xx_hal_pwr_ex.c:146:19:HAL_PWREx_DisableLowPowerRunMode 8 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.d deleted file mode 100644 index 07ba01e..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.d +++ /dev/null @@ -1,77 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o deleted file mode 100644 index aaf9636..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.su deleted file mode 100644 index 57d4d05..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.su +++ /dev/null @@ -1,10 +0,0 @@ -stm32l0xx_hal_rcc.c:223:19:HAL_RCC_DeInit 32 static -stm32l0xx_hal_rcc.c:1120:6:HAL_RCC_MCOConfig 56 static -stm32l0xx_hal_rcc.c:1213:10:HAL_RCC_GetSysClockFreq 16 static -stm32l0xx_hal_rcc.c:338:19:HAL_RCC_OscConfig 48 static -stm32l0xx_hal_rcc.c:859:19:HAL_RCC_ClockConfig 32 static -stm32l0xx_hal_rcc.c:1283:10:HAL_RCC_GetHCLKFreq 0 static -stm32l0xx_hal_rcc.c:1294:10:HAL_RCC_GetPCLK1Freq 0 static -stm32l0xx_hal_rcc.c:1306:10:HAL_RCC_GetPCLK2Freq 0 static -stm32l0xx_hal_rcc.c:1319:6:HAL_RCC_GetOscConfig 8 static -stm32l0xx_hal_rcc.c:1422:6:HAL_RCC_GetClockConfig 12 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.d deleted file mode 100644 index 944b750..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.d +++ /dev/null @@ -1,77 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o deleted file mode 100644 index 07132d2..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.su deleted file mode 100644 index 6c89855..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.su +++ /dev/null @@ -1,8 +0,0 @@ -stm32l0xx_hal_rcc_ex.c:97:19:HAL_RCCEx_PeriphCLKConfig 32 static -stm32l0xx_hal_rcc_ex.c:296:6:HAL_RCCEx_GetPeriphCLKConfig 0 static -stm32l0xx_hal_rcc_ex.c:374:10:HAL_RCCEx_GetPeriphCLKFreq 16 static -stm32l0xx_hal_rcc_ex.c:744:6:HAL_RCCEx_EnableLSECSS 0 static -stm32l0xx_hal_rcc_ex.c:756:6:HAL_RCCEx_DisableLSECSS 0 static -stm32l0xx_hal_rcc_ex.c:770:6:HAL_RCCEx_EnableLSECSS_IT 0 static -stm32l0xx_hal_rcc_ex.c:804:13:HAL_RCCEx_LSECSS_Callback 0 static -stm32l0xx_hal_rcc_ex.c:787:6:HAL_RCCEx_LSECSS_IRQHandler 16 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.d deleted file mode 100644 index 41e02c5..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.d +++ /dev/null @@ -1,77 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o deleted file mode 100644 index dba2695..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.su deleted file mode 100644 index e69de29..0000000 diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.d deleted file mode 100644 index 28406c1..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.d +++ /dev/null @@ -1,77 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o deleted file mode 100644 index bf36455..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.su deleted file mode 100644 index e69de29..0000000 diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.su deleted file mode 100644 index addc091..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.su +++ /dev/null @@ -1,64 +0,0 @@ -stm32l0xx_hal_uart.c:3515:13:UART_EndRxTransfer 0 static -stm32l0xx_hal_uart.c:3910:13:UART_TxISR_8BIT 8 static -stm32l0xx_hal_uart.c:3939:13:UART_TxISR_16BIT 8 static -stm32l0xx_hal_uart.c:653:13:HAL_UART_MspInit 0 static -stm32l0xx_hal_uart.c:668:13:HAL_UART_MspDeInit 0 static -stm32l0xx_hal_uart.c:607:19:HAL_UART_DeInit 16 static -stm32l0xx_hal_uart.c:1288:19:HAL_UART_Transmit_IT 16 static -stm32l0xx_hal_uart.c:1416:19:HAL_UART_Transmit_DMA 32 static -stm32l0xx_hal_uart.c:1557:19:HAL_UART_DMAPause 12 static -stm32l0xx_hal_uart.c:1591:19:HAL_UART_DMAResume 8 static -stm32l0xx_hal_uart.c:1623:19:HAL_UART_DMAStop 16 static -stm32l0xx_hal_uart.c:1698:19:HAL_UART_Abort 16 static -stm32l0xx_hal_uart.c:1793:19:HAL_UART_AbortTransmit 8 static -stm32l0xx_hal_uart.c:1845:19:HAL_UART_AbortReceive 8 static -stm32l0xx_hal_uart.c:2525:13:HAL_UART_TxCpltCallback 0 static -stm32l0xx_hal_uart.c:3541:13:UART_DMATransmitCplt 8 static -stm32l0xx_hal_uart.c:2540:13:HAL_UART_TxHalfCpltCallback 0 static -stm32l0xx_hal_uart.c:3575:13:UART_DMATxHalfCplt 8 static -stm32l0xx_hal_uart.c:2555:13:HAL_UART_RxCpltCallback 0 static -stm32l0xx_hal_uart.c:2570:13:HAL_UART_RxHalfCpltCallback 0 static -stm32l0xx_hal_uart.c:2585:13:HAL_UART_ErrorCallback 0 static -stm32l0xx_hal_uart.c:3684:13:UART_DMAError 8 static -stm32l0xx_hal_uart.c:3724:13:UART_DMAAbortOnError 8 static -stm32l0xx_hal_uart.c:2600:13:HAL_UART_AbortCpltCallback 0 static -stm32l0xx_hal_uart.c:1912:19:HAL_UART_Abort_IT 16 static -stm32l0xx_hal_uart.c:3797:13:UART_DMARxAbortCallback 8 static -stm32l0xx_hal_uart.c:3747:13:UART_DMATxAbortCallback 8 static -stm32l0xx_hal_uart.c:2615:13:HAL_UART_AbortTransmitCpltCallback 0 static -stm32l0xx_hal_uart.c:2058:19:HAL_UART_AbortTransmit_IT 8 static -stm32l0xx_hal_uart.c:3849:13:UART_DMATxOnlyAbortCallback 8 static -stm32l0xx_hal_uart.c:2630:13:HAL_UART_AbortReceiveCpltCallback 0 static -stm32l0xx_hal_uart.c:2142:19:HAL_UART_AbortReceive_IT 8 static -stm32l0xx_hal_uart.c:3877:13:UART_DMARxOnlyAbortCallback 8 static -stm32l0xx_hal_uart.c:2647:13:HAL_UARTEx_RxEventCallback 0 static -stm32l0xx_hal_uart.c:2234:6:HAL_UART_IRQHandler 32 static -stm32l0xx_hal_uart.c:3996:13:UART_RxISR_8BIT 8 static -stm32l0xx_hal_uart.c:4066:13:UART_RxISR_16BIT 8 static -stm32l0xx_hal_uart.c:3650:13:UART_DMARxHalfCplt 8 static -stm32l0xx_hal_uart.c:3593:13:UART_DMAReceiveCplt 8 static -stm32l0xx_hal_uart.c:2695:6:HAL_UART_ReceiverTimeout_Config 0 static -stm32l0xx_hal_uart.c:2710:19:HAL_UART_EnableReceiverTimeout 12 static -stm32l0xx_hal_uart.c:2748:19:HAL_UART_DisableReceiverTimeout 12 static -stm32l0xx_hal_uart.c:2826:6:HAL_MultiProcessor_EnterMuteMode 0 static -stm32l0xx_hal_uart.c:2836:19:HAL_HalfDuplex_EnableTransmitter 8 static -stm32l0xx_hal_uart.c:2859:19:HAL_HalfDuplex_EnableReceiver 8 static -stm32l0xx_hal_uart.c:2883:19:HAL_LIN_SendBreak 8 static -stm32l0xx_hal_uart.c:2928:23:HAL_UART_GetState 0 static -stm32l0xx_hal_uart.c:2944:10:HAL_UART_GetError 0 static -stm32l0xx_hal_uart.c:2988:19:UART_SetConfig 24 static -stm32l0xx_hal_uart.c:3212:6:UART_AdvFeatureConfig 12 static -stm32l0xx_hal_uart.c:3337:19:UART_WaitOnFlagUntilTimeout 32 static -stm32l0xx_hal_uart.c:1085:19:HAL_UART_Transmit 48 static -stm32l0xx_hal_uart.c:1186:19:HAL_UART_Receive 48 static -stm32l0xx_hal_uart.c:3286:19:UART_CheckIdleState 24 static -stm32l0xx_hal_uart.c:290:19:HAL_UART_Init 8 static -stm32l0xx_hal_uart.c:363:19:HAL_HalfDuplex_Init 8 static -stm32l0xx_hal_uart.c:436:19:HAL_LIN_Init 16 static -stm32l0xx_hal_uart.c:533:19:HAL_MultiProcessor_Init 16 static -stm32l0xx_hal_uart.c:2786:19:HAL_MultiProcessor_EnableMuteMode 8 static -stm32l0xx_hal_uart.c:2806:19:HAL_MultiProcessor_DisableMuteMode 8 static -stm32l0xx_hal_uart.c:3399:19:UART_Start_Receive_IT 8 static -stm32l0xx_hal_uart.c:1357:19:HAL_UART_Receive_IT 16 static -stm32l0xx_hal_uart.c:3443:19:UART_Start_Receive_DMA 32 static -stm32l0xx_hal_uart.c:1508:19:HAL_UART_Receive_DMA 16 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.su deleted file mode 100644 index de544b1..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.su +++ /dev/null @@ -1,11 +0,0 @@ -stm32l0xx_hal_uart_ex.c:148:19:HAL_RS485Ex_Init 24 static -stm32l0xx_hal_uart_ex.c:250:13:HAL_UARTEx_WakeupCallback 0 static -stm32l0xx_hal_uart_ex.c:330:19:HAL_UARTEx_EnableClockStopMode 0 static -stm32l0xx_hal_uart_ex.c:349:19:HAL_UARTEx_DisableClockStopMode 0 static -stm32l0xx_hal_uart_ex.c:376:19:HAL_MultiProcessorEx_AddressLength_Set 16 static -stm32l0xx_hal_uart_ex.c:414:19:HAL_UARTEx_StopModeWakeUpSourceConfig 32 static -stm32l0xx_hal_uart_ex.c:469:19:HAL_UARTEx_EnableStopMode 8 static -stm32l0xx_hal_uart_ex.c:488:19:HAL_UARTEx_DisableStopMode 8 static -stm32l0xx_hal_uart_ex.c:521:19:HAL_UARTEx_ReceiveToIdle 40 static -stm32l0xx_hal_uart_ex.c:659:19:HAL_UARTEx_ReceiveToIdle_IT 16 static -stm32l0xx_hal_uart_ex.c:735:19:HAL_UARTEx_ReceiveToIdle_DMA 16 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.d deleted file mode 100644 index 47760b1..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.d +++ /dev/null @@ -1,83 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_dma.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_bus.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_dma.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_bus.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o deleted file mode 100644 index e18332f..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.su deleted file mode 100644 index 7e34b01..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.su +++ /dev/null @@ -1,3 +0,0 @@ -stm32l0xx_ll_dma.c:150:13:LL_DMA_DeInit 16 static -stm32l0xx_ll_dma.c:275:13:LL_DMA_Init 16 static -stm32l0xx_ll_dma.c:343:6:LL_DMA_StructInit 0 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.d deleted file mode 100644 index a8b7a20..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.d +++ /dev/null @@ -1,80 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_exti.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_exti.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o deleted file mode 100644 index c54f927..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.su deleted file mode 100644 index ca187b5..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.su +++ /dev/null @@ -1,3 +0,0 @@ -stm32l0xx_ll_exti.c:80:10:LL_EXTI_DeInit 0 static -stm32l0xx_ll_exti.c:105:10:LL_EXTI_Init 8 static -stm32l0xx_ll_exti.c:186:6:LL_EXTI_StructInit 0 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.d deleted file mode 100644 index b01e799..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.d +++ /dev/null @@ -1,83 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_gpio.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_bus.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_gpio.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_bus.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o deleted file mode 100644 index 0e34ffb..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.su deleted file mode 100644 index bc587a1..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.su +++ /dev/null @@ -1,3 +0,0 @@ -stm32l0xx_ll_gpio.c:96:13:LL_GPIO_DeInit 0 static -stm32l0xx_ll_gpio.c:157:13:LL_GPIO_Init 32 static -stm32l0xx_ll_gpio.c:231:6:LL_GPIO_StructInit 0 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.d deleted file mode 100644 index f0883c0..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.d +++ /dev/null @@ -1,83 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_i2c.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_bus.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_i2c.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_bus.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o deleted file mode 100644 index 88f5eed..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.su deleted file mode 100644 index bfa06c8..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.su +++ /dev/null @@ -1,3 +0,0 @@ -stm32l0xx_ll_i2c.c:87:13:LL_I2C_DeInit 0 static -stm32l0xx_ll_i2c.c:139:13:LL_I2C_Init 12 static -stm32l0xx_ll_i2c.c:207:6:LL_I2C_StructInit 0 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.d deleted file mode 100644 index 3b2c8f9..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.d +++ /dev/null @@ -1,86 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_lpuart.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_bus.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_lpuart.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_bus.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o deleted file mode 100644 index f6406bb..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.su deleted file mode 100644 index 2af37eb..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.su +++ /dev/null @@ -1,3 +0,0 @@ -stm32l0xx_ll_lpuart.c:117:13:LL_LPUART_DeInit 0 static -stm32l0xx_ll_lpuart.c:155:13:LL_LPUART_Init 24 static -stm32l0xx_ll_lpuart.c:232:6:LL_LPUART_StructInit 0 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_pwr.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_pwr.d deleted file mode 100644 index b22a85d..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_pwr.d +++ /dev/null @@ -1,29 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_pwr.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_pwr.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_pwr.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_bus.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_pwr.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_bus.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_pwr.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_pwr.su deleted file mode 100644 index c2f6d7c..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_pwr.su +++ /dev/null @@ -1,3 +0,0 @@ -stm32l0xx_ll_bus.h:595:22:LL_APB1_GRP1_ForceReset 16 static -stm32l0xx_ll_bus.h:646:22:LL_APB1_GRP1_ReleaseReset 16 static -stm32l0xx_ll_pwr.c:56:13:LL_PWR_DeInit 8 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.d deleted file mode 100644 index 58f601e..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.d +++ /dev/null @@ -1,80 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_rcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_rcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o deleted file mode 100644 index 5cf0e08..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.su deleted file mode 100644 index 0819a7b..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.su +++ /dev/null @@ -1,13 +0,0 @@ -stm32l0xx_ll_rcc.h:802:26:LL_RCC_HSI_IsReady 0 static -stm32l0xx_ll_rcc.h:2097:26:LL_RCC_IsActiveFlag_HSIDIV 0 static -stm32l0xx_ll_rcc.c:112:13:LL_RCC_DeInit 16 static,ignoring_inline_asm -stm32l0xx_ll_rcc.c:622:10:RCC_GetHCLKClockFreq 0 static -stm32l0xx_ll_rcc.c:633:10:RCC_GetPCLK1ClockFreq 0 static -stm32l0xx_ll_rcc.c:644:10:RCC_GetPCLK2ClockFreq 0 static -stm32l0xx_ll_rcc.c:654:10:RCC_PLL_GetFreqDomain_SYS 8 static -stm32l0xx_ll_rcc.c:579:10:RCC_GetSystemClockFreq 8 static -stm32l0xx_ll_rcc.c:222:6:LL_RCC_GetSystemClocksFreq 8 static -stm32l0xx_ll_rcc.c:247:10:LL_RCC_GetUSARTClockFreq 8 static -stm32l0xx_ll_rcc.c:344:10:LL_RCC_GetI2CClockFreq 8 static -stm32l0xx_ll_rcc.c:423:10:LL_RCC_GetLPUARTClockFreq 8 static -stm32l0xx_ll_rcc.c:474:10:LL_RCC_GetLPTIMClockFreq 8 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.d b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.d deleted file mode 100644 index 4917ee8..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.d +++ /dev/null @@ -1,89 +0,0 @@ -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o: \ - ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.c \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_rcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h \ - ../Drivers/CMSIS/Include/core_cm0plus.h \ - ../Drivers/CMSIS/Include/cmsis_version.h \ - ../Drivers/CMSIS/Include/cmsis_compiler.h \ - ../Drivers/CMSIS/Include/cmsis_gcc.h \ - ../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h \ - ../Core/Inc/stm32l0xx_hal_conf.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_utils.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_system.h \ - ../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_pwr.h - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_rcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: - -../Drivers/CMSIS/Include/core_cm0plus.h: - -../Drivers/CMSIS/Include/cmsis_version.h: - -../Drivers/CMSIS/Include/cmsis_compiler.h: - -../Drivers/CMSIS/Include/cmsis_gcc.h: - -../Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h: - -../Core/Inc/stm32l0xx_hal_conf.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_exti.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_utils.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_system.h: - -../Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_ll_pwr.h: diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o deleted file mode 100644 index ba0cf0e..0000000 Binary files a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o and /dev/null differ diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.su b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.su deleted file mode 100644 index ab2a69f..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.su +++ /dev/null @@ -1,7 +0,0 @@ -stm32l0xx_ll_utils.c:147:6:LL_Init1msTick 8 static -stm32l0xx_ll_utils.c:163:6:LL_mDelay 8 static -stm32l0xx_ll_utils.c:225:6:LL_SetSystemCoreClock 0 static -stm32l0xx_ll_utils.c:239:13:LL_SetFlashLatency 8 static -stm32l0xx_ll_utils.c:521:20:UTILS_EnablePLLAndSwitchSystem 16 static -stm32l0xx_ll_utils.c:338:13:LL_PLL_ConfigSystemClock_HSI 24 static -stm32l0xx_ll_utils.c:397:13:LL_PLL_ConfigSystemClock_HSE 24 static diff --git a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk b/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk deleted file mode 100644 index bd42155..0000000 --- a/fw/Debug/Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk +++ /dev/null @@ -1,130 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -# Toolchain: GNU Tools for STM32 (9-2020-q2-update) -################################################################################ - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.c \ -../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.c - -OBJS += \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - -C_DEPS += \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.d \ -./Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.d - - -# Each subdirectory must supply rules for building sources it contributes -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" -Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o: ../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.c Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk - arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DSTM32L011xx -DDEBUG -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -c -I../Core/Inc -I../Drivers/STM32L0xx_HAL_Driver/Inc -I../Drivers/CMSIS/Device/ST/STM32L0xx/Include -I../Drivers/CMSIS/Include -I../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy -Os -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" - diff --git a/fw/Debug/iaq_wired_sensor.bin b/fw/Debug/iaq_wired_sensor.bin deleted file mode 100755 index 292d6f9..0000000 Binary files a/fw/Debug/iaq_wired_sensor.bin and /dev/null differ diff --git a/fw/Debug/iaq_wired_sensor.elf b/fw/Debug/iaq_wired_sensor.elf deleted file mode 100755 index 09eee6f..0000000 Binary files a/fw/Debug/iaq_wired_sensor.elf and /dev/null differ diff --git a/fw/Debug/iaq_wired_sensor.list b/fw/Debug/iaq_wired_sensor.list deleted file mode 100644 index 120fdcf..0000000 --- a/fw/Debug/iaq_wired_sensor.list +++ /dev/null @@ -1,3738 +0,0 @@ - -iaq_wired_sensor.elf: file format elf32-littlearm - -Sections: -Idx Name Size VMA LMA File off Algn - 0 .isr_vector 000000c0 08000000 08000000 00010000 2**0 - CONTENTS, ALLOC, LOAD, READONLY, DATA - 1 .text 00001540 080000c0 080000c0 000100c0 2**2 - CONTENTS, ALLOC, LOAD, READONLY, CODE - 2 .rodata 00000024 08001600 08001600 00011600 2**0 - CONTENTS, ALLOC, LOAD, READONLY, DATA - 3 .ARM.extab 00000000 08001624 08001624 0002000c 2**0 - CONTENTS - 4 .ARM 00000008 08001624 08001624 00011624 2**2 - CONTENTS, ALLOC, LOAD, READONLY, DATA - 5 .preinit_array 00000000 0800162c 0800162c 0002000c 2**0 - CONTENTS, ALLOC, LOAD, DATA - 6 .init_array 00000004 0800162c 0800162c 0001162c 2**2 - CONTENTS, ALLOC, LOAD, DATA - 7 .fini_array 00000004 08001630 08001630 00011630 2**2 - CONTENTS, ALLOC, LOAD, DATA - 8 .data 0000000c 20000000 08001634 00020000 2**2 - CONTENTS, ALLOC, LOAD, DATA - 9 .bss 00000020 2000000c 08001640 0002000c 2**2 - ALLOC - 10 ._user_heap_stack 00000604 2000002c 08001640 0002002c 2**0 - ALLOC - 11 .ARM.attributes 00000028 00000000 00000000 0002000c 2**0 - CONTENTS, READONLY - 12 .debug_info 00006c2d 00000000 00000000 00020034 2**0 - CONTENTS, READONLY, DEBUGGING, OCTETS - 13 .debug_abbrev 00001b63 00000000 00000000 00026c61 2**0 - CONTENTS, READONLY, DEBUGGING, OCTETS - 14 .debug_loc 00002331 00000000 00000000 000287c4 2**0 - CONTENTS, READONLY, DEBUGGING, OCTETS - 15 .debug_aranges 00000430 00000000 00000000 0002aaf8 2**3 - CONTENTS, READONLY, DEBUGGING, OCTETS - 16 .debug_ranges 00000a18 00000000 00000000 0002af28 2**3 - CONTENTS, READONLY, DEBUGGING, OCTETS - 17 .debug_macro 0001133a 00000000 00000000 0002b940 2**0 - CONTENTS, READONLY, DEBUGGING, OCTETS - 18 .debug_line 00007f60 00000000 00000000 0003cc7a 2**0 - CONTENTS, READONLY, DEBUGGING, OCTETS - 19 .debug_str 00062aa3 00000000 00000000 00044bda 2**0 - CONTENTS, READONLY, DEBUGGING, OCTETS - 20 .comment 00000053 00000000 00000000 000a767d 2**0 - CONTENTS, READONLY - 21 .debug_frame 0000091c 00000000 00000000 000a76d0 2**2 - CONTENTS, READONLY, DEBUGGING, OCTETS - -Disassembly of section .text: - -080000c0 <__do_global_dtors_aux>: - 80000c0: b510 push {r4, lr} - 80000c2: 4c06 ldr r4, [pc, #24] ; (80000dc <__do_global_dtors_aux+0x1c>) - 80000c4: 7823 ldrb r3, [r4, #0] - 80000c6: 2b00 cmp r3, #0 - 80000c8: d107 bne.n 80000da <__do_global_dtors_aux+0x1a> - 80000ca: 4b05 ldr r3, [pc, #20] ; (80000e0 <__do_global_dtors_aux+0x20>) - 80000cc: 2b00 cmp r3, #0 - 80000ce: d002 beq.n 80000d6 <__do_global_dtors_aux+0x16> - 80000d0: 4804 ldr r0, [pc, #16] ; (80000e4 <__do_global_dtors_aux+0x24>) - 80000d2: e000 b.n 80000d6 <__do_global_dtors_aux+0x16> - 80000d4: bf00 nop - 80000d6: 2301 movs r3, #1 - 80000d8: 7023 strb r3, [r4, #0] - 80000da: bd10 pop {r4, pc} - 80000dc: 2000000c .word 0x2000000c - 80000e0: 00000000 .word 0x00000000 - 80000e4: 080015e8 .word 0x080015e8 - -080000e8 : - 80000e8: 4b04 ldr r3, [pc, #16] ; (80000fc ) - 80000ea: b510 push {r4, lr} - 80000ec: 2b00 cmp r3, #0 - 80000ee: d003 beq.n 80000f8 - 80000f0: 4903 ldr r1, [pc, #12] ; (8000100 ) - 80000f2: 4804 ldr r0, [pc, #16] ; (8000104 ) - 80000f4: e000 b.n 80000f8 - 80000f6: bf00 nop - 80000f8: bd10 pop {r4, pc} - 80000fa: 46c0 nop ; (mov r8, r8) - 80000fc: 00000000 .word 0x00000000 - 8000100: 20000010 .word 0x20000010 - 8000104: 080015e8 .word 0x080015e8 - -08000108 <__udivsi3>: - 8000108: 2200 movs r2, #0 - 800010a: 0843 lsrs r3, r0, #1 - 800010c: 428b cmp r3, r1 - 800010e: d374 bcc.n 80001fa <__udivsi3+0xf2> - 8000110: 0903 lsrs r3, r0, #4 - 8000112: 428b cmp r3, r1 - 8000114: d35f bcc.n 80001d6 <__udivsi3+0xce> - 8000116: 0a03 lsrs r3, r0, #8 - 8000118: 428b cmp r3, r1 - 800011a: d344 bcc.n 80001a6 <__udivsi3+0x9e> - 800011c: 0b03 lsrs r3, r0, #12 - 800011e: 428b cmp r3, r1 - 8000120: d328 bcc.n 8000174 <__udivsi3+0x6c> - 8000122: 0c03 lsrs r3, r0, #16 - 8000124: 428b cmp r3, r1 - 8000126: d30d bcc.n 8000144 <__udivsi3+0x3c> - 8000128: 22ff movs r2, #255 ; 0xff - 800012a: 0209 lsls r1, r1, #8 - 800012c: ba12 rev r2, r2 - 800012e: 0c03 lsrs r3, r0, #16 - 8000130: 428b cmp r3, r1 - 8000132: d302 bcc.n 800013a <__udivsi3+0x32> - 8000134: 1212 asrs r2, r2, #8 - 8000136: 0209 lsls r1, r1, #8 - 8000138: d065 beq.n 8000206 <__udivsi3+0xfe> - 800013a: 0b03 lsrs r3, r0, #12 - 800013c: 428b cmp r3, r1 - 800013e: d319 bcc.n 8000174 <__udivsi3+0x6c> - 8000140: e000 b.n 8000144 <__udivsi3+0x3c> - 8000142: 0a09 lsrs r1, r1, #8 - 8000144: 0bc3 lsrs r3, r0, #15 - 8000146: 428b cmp r3, r1 - 8000148: d301 bcc.n 800014e <__udivsi3+0x46> - 800014a: 03cb lsls r3, r1, #15 - 800014c: 1ac0 subs r0, r0, r3 - 800014e: 4152 adcs r2, r2 - 8000150: 0b83 lsrs r3, r0, #14 - 8000152: 428b cmp r3, r1 - 8000154: d301 bcc.n 800015a <__udivsi3+0x52> - 8000156: 038b lsls r3, r1, #14 - 8000158: 1ac0 subs r0, r0, r3 - 800015a: 4152 adcs r2, r2 - 800015c: 0b43 lsrs r3, r0, #13 - 800015e: 428b cmp r3, r1 - 8000160: d301 bcc.n 8000166 <__udivsi3+0x5e> - 8000162: 034b lsls r3, r1, #13 - 8000164: 1ac0 subs r0, r0, r3 - 8000166: 4152 adcs r2, r2 - 8000168: 0b03 lsrs r3, r0, #12 - 800016a: 428b cmp r3, r1 - 800016c: d301 bcc.n 8000172 <__udivsi3+0x6a> - 800016e: 030b lsls r3, r1, #12 - 8000170: 1ac0 subs r0, r0, r3 - 8000172: 4152 adcs r2, r2 - 8000174: 0ac3 lsrs r3, r0, #11 - 8000176: 428b cmp r3, r1 - 8000178: d301 bcc.n 800017e <__udivsi3+0x76> - 800017a: 02cb lsls r3, r1, #11 - 800017c: 1ac0 subs r0, r0, r3 - 800017e: 4152 adcs r2, r2 - 8000180: 0a83 lsrs r3, r0, #10 - 8000182: 428b cmp r3, r1 - 8000184: d301 bcc.n 800018a <__udivsi3+0x82> - 8000186: 028b lsls r3, r1, #10 - 8000188: 1ac0 subs r0, r0, r3 - 800018a: 4152 adcs r2, r2 - 800018c: 0a43 lsrs r3, r0, #9 - 800018e: 428b cmp r3, r1 - 8000190: d301 bcc.n 8000196 <__udivsi3+0x8e> - 8000192: 024b lsls r3, r1, #9 - 8000194: 1ac0 subs r0, r0, r3 - 8000196: 4152 adcs r2, r2 - 8000198: 0a03 lsrs r3, r0, #8 - 800019a: 428b cmp r3, r1 - 800019c: d301 bcc.n 80001a2 <__udivsi3+0x9a> - 800019e: 020b lsls r3, r1, #8 - 80001a0: 1ac0 subs r0, r0, r3 - 80001a2: 4152 adcs r2, r2 - 80001a4: d2cd bcs.n 8000142 <__udivsi3+0x3a> - 80001a6: 09c3 lsrs r3, r0, #7 - 80001a8: 428b cmp r3, r1 - 80001aa: d301 bcc.n 80001b0 <__udivsi3+0xa8> - 80001ac: 01cb lsls r3, r1, #7 - 80001ae: 1ac0 subs r0, r0, r3 - 80001b0: 4152 adcs r2, r2 - 80001b2: 0983 lsrs r3, r0, #6 - 80001b4: 428b cmp r3, r1 - 80001b6: d301 bcc.n 80001bc <__udivsi3+0xb4> - 80001b8: 018b lsls r3, r1, #6 - 80001ba: 1ac0 subs r0, r0, r3 - 80001bc: 4152 adcs r2, r2 - 80001be: 0943 lsrs r3, r0, #5 - 80001c0: 428b cmp r3, r1 - 80001c2: d301 bcc.n 80001c8 <__udivsi3+0xc0> - 80001c4: 014b lsls r3, r1, #5 - 80001c6: 1ac0 subs r0, r0, r3 - 80001c8: 4152 adcs r2, r2 - 80001ca: 0903 lsrs r3, r0, #4 - 80001cc: 428b cmp r3, r1 - 80001ce: d301 bcc.n 80001d4 <__udivsi3+0xcc> - 80001d0: 010b lsls r3, r1, #4 - 80001d2: 1ac0 subs r0, r0, r3 - 80001d4: 4152 adcs r2, r2 - 80001d6: 08c3 lsrs r3, r0, #3 - 80001d8: 428b cmp r3, r1 - 80001da: d301 bcc.n 80001e0 <__udivsi3+0xd8> - 80001dc: 00cb lsls r3, r1, #3 - 80001de: 1ac0 subs r0, r0, r3 - 80001e0: 4152 adcs r2, r2 - 80001e2: 0883 lsrs r3, r0, #2 - 80001e4: 428b cmp r3, r1 - 80001e6: d301 bcc.n 80001ec <__udivsi3+0xe4> - 80001e8: 008b lsls r3, r1, #2 - 80001ea: 1ac0 subs r0, r0, r3 - 80001ec: 4152 adcs r2, r2 - 80001ee: 0843 lsrs r3, r0, #1 - 80001f0: 428b cmp r3, r1 - 80001f2: d301 bcc.n 80001f8 <__udivsi3+0xf0> - 80001f4: 004b lsls r3, r1, #1 - 80001f6: 1ac0 subs r0, r0, r3 - 80001f8: 4152 adcs r2, r2 - 80001fa: 1a41 subs r1, r0, r1 - 80001fc: d200 bcs.n 8000200 <__udivsi3+0xf8> - 80001fe: 4601 mov r1, r0 - 8000200: 4152 adcs r2, r2 - 8000202: 4610 mov r0, r2 - 8000204: 4770 bx lr - 8000206: e7ff b.n 8000208 <__udivsi3+0x100> - 8000208: b501 push {r0, lr} - 800020a: 2000 movs r0, #0 - 800020c: f000 f806 bl 800021c <__aeabi_idiv0> - 8000210: bd02 pop {r1, pc} - 8000212: 46c0 nop ; (mov r8, r8) - -08000214 <__aeabi_uidivmod>: - 8000214: 2900 cmp r1, #0 - 8000216: d0f7 beq.n 8000208 <__udivsi3+0x100> - 8000218: e776 b.n 8000108 <__udivsi3> - 800021a: 4770 bx lr - -0800021c <__aeabi_idiv0>: - 800021c: 4770 bx lr - 800021e: 46c0 nop ; (mov r8, r8) - -08000220 <__aeabi_uldivmod>: - 8000220: 2b00 cmp r3, #0 - 8000222: d111 bne.n 8000248 <__aeabi_uldivmod+0x28> - 8000224: 2a00 cmp r2, #0 - 8000226: d10f bne.n 8000248 <__aeabi_uldivmod+0x28> - 8000228: 2900 cmp r1, #0 - 800022a: d100 bne.n 800022e <__aeabi_uldivmod+0xe> - 800022c: 2800 cmp r0, #0 - 800022e: d002 beq.n 8000236 <__aeabi_uldivmod+0x16> - 8000230: 2100 movs r1, #0 - 8000232: 43c9 mvns r1, r1 - 8000234: 1c08 adds r0, r1, #0 - 8000236: b407 push {r0, r1, r2} - 8000238: 4802 ldr r0, [pc, #8] ; (8000244 <__aeabi_uldivmod+0x24>) - 800023a: a102 add r1, pc, #8 ; (adr r1, 8000244 <__aeabi_uldivmod+0x24>) - 800023c: 1840 adds r0, r0, r1 - 800023e: 9002 str r0, [sp, #8] - 8000240: bd03 pop {r0, r1, pc} - 8000242: 46c0 nop ; (mov r8, r8) - 8000244: ffffffd9 .word 0xffffffd9 - 8000248: b403 push {r0, r1} - 800024a: 4668 mov r0, sp - 800024c: b501 push {r0, lr} - 800024e: 9802 ldr r0, [sp, #8] - 8000250: f000 f82e bl 80002b0 <__udivmoddi4> - 8000254: 9b01 ldr r3, [sp, #4] - 8000256: 469e mov lr, r3 - 8000258: b002 add sp, #8 - 800025a: bc0c pop {r2, r3} - 800025c: 4770 bx lr - 800025e: 46c0 nop ; (mov r8, r8) - -08000260 <__aeabi_lmul>: - 8000260: b5f0 push {r4, r5, r6, r7, lr} - 8000262: 0415 lsls r5, r2, #16 - 8000264: 0c2d lsrs r5, r5, #16 - 8000266: 000f movs r7, r1 - 8000268: 0001 movs r1, r0 - 800026a: 002e movs r6, r5 - 800026c: 46c6 mov lr, r8 - 800026e: 4684 mov ip, r0 - 8000270: 0400 lsls r0, r0, #16 - 8000272: 0c14 lsrs r4, r2, #16 - 8000274: 0c00 lsrs r0, r0, #16 - 8000276: 0c09 lsrs r1, r1, #16 - 8000278: 4346 muls r6, r0 - 800027a: 434d muls r5, r1 - 800027c: 4360 muls r0, r4 - 800027e: 4361 muls r1, r4 - 8000280: 1940 adds r0, r0, r5 - 8000282: 0c34 lsrs r4, r6, #16 - 8000284: 1824 adds r4, r4, r0 - 8000286: b500 push {lr} - 8000288: 42a5 cmp r5, r4 - 800028a: d903 bls.n 8000294 <__aeabi_lmul+0x34> - 800028c: 2080 movs r0, #128 ; 0x80 - 800028e: 0240 lsls r0, r0, #9 - 8000290: 4680 mov r8, r0 - 8000292: 4441 add r1, r8 - 8000294: 0c25 lsrs r5, r4, #16 - 8000296: 186d adds r5, r5, r1 - 8000298: 4661 mov r1, ip - 800029a: 4359 muls r1, r3 - 800029c: 437a muls r2, r7 - 800029e: 0430 lsls r0, r6, #16 - 80002a0: 1949 adds r1, r1, r5 - 80002a2: 0424 lsls r4, r4, #16 - 80002a4: 0c00 lsrs r0, r0, #16 - 80002a6: 1820 adds r0, r4, r0 - 80002a8: 1889 adds r1, r1, r2 - 80002aa: bc80 pop {r7} - 80002ac: 46b8 mov r8, r7 - 80002ae: bdf0 pop {r4, r5, r6, r7, pc} - -080002b0 <__udivmoddi4>: - 80002b0: b5f0 push {r4, r5, r6, r7, lr} - 80002b2: 4657 mov r7, sl - 80002b4: 464e mov r6, r9 - 80002b6: 4645 mov r5, r8 - 80002b8: 46de mov lr, fp - 80002ba: b5e0 push {r5, r6, r7, lr} - 80002bc: 0004 movs r4, r0 - 80002be: 000d movs r5, r1 - 80002c0: 4692 mov sl, r2 - 80002c2: 4699 mov r9, r3 - 80002c4: b083 sub sp, #12 - 80002c6: 428b cmp r3, r1 - 80002c8: d830 bhi.n 800032c <__udivmoddi4+0x7c> - 80002ca: d02d beq.n 8000328 <__udivmoddi4+0x78> - 80002cc: 4649 mov r1, r9 - 80002ce: 4650 mov r0, sl - 80002d0: f000 f8ba bl 8000448 <__clzdi2> - 80002d4: 0029 movs r1, r5 - 80002d6: 0006 movs r6, r0 - 80002d8: 0020 movs r0, r4 - 80002da: f000 f8b5 bl 8000448 <__clzdi2> - 80002de: 1a33 subs r3, r6, r0 - 80002e0: 4698 mov r8, r3 - 80002e2: 3b20 subs r3, #32 - 80002e4: 469b mov fp, r3 - 80002e6: d433 bmi.n 8000350 <__udivmoddi4+0xa0> - 80002e8: 465a mov r2, fp - 80002ea: 4653 mov r3, sl - 80002ec: 4093 lsls r3, r2 - 80002ee: 4642 mov r2, r8 - 80002f0: 001f movs r7, r3 - 80002f2: 4653 mov r3, sl - 80002f4: 4093 lsls r3, r2 - 80002f6: 001e movs r6, r3 - 80002f8: 42af cmp r7, r5 - 80002fa: d83a bhi.n 8000372 <__udivmoddi4+0xc2> - 80002fc: 42af cmp r7, r5 - 80002fe: d100 bne.n 8000302 <__udivmoddi4+0x52> - 8000300: e078 b.n 80003f4 <__udivmoddi4+0x144> - 8000302: 465b mov r3, fp - 8000304: 1ba4 subs r4, r4, r6 - 8000306: 41bd sbcs r5, r7 - 8000308: 2b00 cmp r3, #0 - 800030a: da00 bge.n 800030e <__udivmoddi4+0x5e> - 800030c: e075 b.n 80003fa <__udivmoddi4+0x14a> - 800030e: 2200 movs r2, #0 - 8000310: 2300 movs r3, #0 - 8000312: 9200 str r2, [sp, #0] - 8000314: 9301 str r3, [sp, #4] - 8000316: 2301 movs r3, #1 - 8000318: 465a mov r2, fp - 800031a: 4093 lsls r3, r2 - 800031c: 9301 str r3, [sp, #4] - 800031e: 2301 movs r3, #1 - 8000320: 4642 mov r2, r8 - 8000322: 4093 lsls r3, r2 - 8000324: 9300 str r3, [sp, #0] - 8000326: e028 b.n 800037a <__udivmoddi4+0xca> - 8000328: 4282 cmp r2, r0 - 800032a: d9cf bls.n 80002cc <__udivmoddi4+0x1c> - 800032c: 2200 movs r2, #0 - 800032e: 2300 movs r3, #0 - 8000330: 9200 str r2, [sp, #0] - 8000332: 9301 str r3, [sp, #4] - 8000334: 9b0c ldr r3, [sp, #48] ; 0x30 - 8000336: 2b00 cmp r3, #0 - 8000338: d001 beq.n 800033e <__udivmoddi4+0x8e> - 800033a: 601c str r4, [r3, #0] - 800033c: 605d str r5, [r3, #4] - 800033e: 9800 ldr r0, [sp, #0] - 8000340: 9901 ldr r1, [sp, #4] - 8000342: b003 add sp, #12 - 8000344: bcf0 pop {r4, r5, r6, r7} - 8000346: 46bb mov fp, r7 - 8000348: 46b2 mov sl, r6 - 800034a: 46a9 mov r9, r5 - 800034c: 46a0 mov r8, r4 - 800034e: bdf0 pop {r4, r5, r6, r7, pc} - 8000350: 4642 mov r2, r8 - 8000352: 2320 movs r3, #32 - 8000354: 1a9b subs r3, r3, r2 - 8000356: 4652 mov r2, sl - 8000358: 40da lsrs r2, r3 - 800035a: 4641 mov r1, r8 - 800035c: 0013 movs r3, r2 - 800035e: 464a mov r2, r9 - 8000360: 408a lsls r2, r1 - 8000362: 0017 movs r7, r2 - 8000364: 4642 mov r2, r8 - 8000366: 431f orrs r7, r3 - 8000368: 4653 mov r3, sl - 800036a: 4093 lsls r3, r2 - 800036c: 001e movs r6, r3 - 800036e: 42af cmp r7, r5 - 8000370: d9c4 bls.n 80002fc <__udivmoddi4+0x4c> - 8000372: 2200 movs r2, #0 - 8000374: 2300 movs r3, #0 - 8000376: 9200 str r2, [sp, #0] - 8000378: 9301 str r3, [sp, #4] - 800037a: 4643 mov r3, r8 - 800037c: 2b00 cmp r3, #0 - 800037e: d0d9 beq.n 8000334 <__udivmoddi4+0x84> - 8000380: 07fb lsls r3, r7, #31 - 8000382: 0872 lsrs r2, r6, #1 - 8000384: 431a orrs r2, r3 - 8000386: 4646 mov r6, r8 - 8000388: 087b lsrs r3, r7, #1 - 800038a: e00e b.n 80003aa <__udivmoddi4+0xfa> - 800038c: 42ab cmp r3, r5 - 800038e: d101 bne.n 8000394 <__udivmoddi4+0xe4> - 8000390: 42a2 cmp r2, r4 - 8000392: d80c bhi.n 80003ae <__udivmoddi4+0xfe> - 8000394: 1aa4 subs r4, r4, r2 - 8000396: 419d sbcs r5, r3 - 8000398: 2001 movs r0, #1 - 800039a: 1924 adds r4, r4, r4 - 800039c: 416d adcs r5, r5 - 800039e: 2100 movs r1, #0 - 80003a0: 3e01 subs r6, #1 - 80003a2: 1824 adds r4, r4, r0 - 80003a4: 414d adcs r5, r1 - 80003a6: 2e00 cmp r6, #0 - 80003a8: d006 beq.n 80003b8 <__udivmoddi4+0x108> - 80003aa: 42ab cmp r3, r5 - 80003ac: d9ee bls.n 800038c <__udivmoddi4+0xdc> - 80003ae: 3e01 subs r6, #1 - 80003b0: 1924 adds r4, r4, r4 - 80003b2: 416d adcs r5, r5 - 80003b4: 2e00 cmp r6, #0 - 80003b6: d1f8 bne.n 80003aa <__udivmoddi4+0xfa> - 80003b8: 9800 ldr r0, [sp, #0] - 80003ba: 9901 ldr r1, [sp, #4] - 80003bc: 465b mov r3, fp - 80003be: 1900 adds r0, r0, r4 - 80003c0: 4169 adcs r1, r5 - 80003c2: 2b00 cmp r3, #0 - 80003c4: db24 blt.n 8000410 <__udivmoddi4+0x160> - 80003c6: 002b movs r3, r5 - 80003c8: 465a mov r2, fp - 80003ca: 4644 mov r4, r8 - 80003cc: 40d3 lsrs r3, r2 - 80003ce: 002a movs r2, r5 - 80003d0: 40e2 lsrs r2, r4 - 80003d2: 001c movs r4, r3 - 80003d4: 465b mov r3, fp - 80003d6: 0015 movs r5, r2 - 80003d8: 2b00 cmp r3, #0 - 80003da: db2a blt.n 8000432 <__udivmoddi4+0x182> - 80003dc: 0026 movs r6, r4 - 80003de: 409e lsls r6, r3 - 80003e0: 0033 movs r3, r6 - 80003e2: 0026 movs r6, r4 - 80003e4: 4647 mov r7, r8 - 80003e6: 40be lsls r6, r7 - 80003e8: 0032 movs r2, r6 - 80003ea: 1a80 subs r0, r0, r2 - 80003ec: 4199 sbcs r1, r3 - 80003ee: 9000 str r0, [sp, #0] - 80003f0: 9101 str r1, [sp, #4] - 80003f2: e79f b.n 8000334 <__udivmoddi4+0x84> - 80003f4: 42a3 cmp r3, r4 - 80003f6: d8bc bhi.n 8000372 <__udivmoddi4+0xc2> - 80003f8: e783 b.n 8000302 <__udivmoddi4+0x52> - 80003fa: 4642 mov r2, r8 - 80003fc: 2320 movs r3, #32 - 80003fe: 2100 movs r1, #0 - 8000400: 1a9b subs r3, r3, r2 - 8000402: 2200 movs r2, #0 - 8000404: 9100 str r1, [sp, #0] - 8000406: 9201 str r2, [sp, #4] - 8000408: 2201 movs r2, #1 - 800040a: 40da lsrs r2, r3 - 800040c: 9201 str r2, [sp, #4] - 800040e: e786 b.n 800031e <__udivmoddi4+0x6e> - 8000410: 4642 mov r2, r8 - 8000412: 2320 movs r3, #32 - 8000414: 1a9b subs r3, r3, r2 - 8000416: 002a movs r2, r5 - 8000418: 4646 mov r6, r8 - 800041a: 409a lsls r2, r3 - 800041c: 0023 movs r3, r4 - 800041e: 40f3 lsrs r3, r6 - 8000420: 4644 mov r4, r8 - 8000422: 4313 orrs r3, r2 - 8000424: 002a movs r2, r5 - 8000426: 40e2 lsrs r2, r4 - 8000428: 001c movs r4, r3 - 800042a: 465b mov r3, fp - 800042c: 0015 movs r5, r2 - 800042e: 2b00 cmp r3, #0 - 8000430: dad4 bge.n 80003dc <__udivmoddi4+0x12c> - 8000432: 4642 mov r2, r8 - 8000434: 002f movs r7, r5 - 8000436: 2320 movs r3, #32 - 8000438: 0026 movs r6, r4 - 800043a: 4097 lsls r7, r2 - 800043c: 1a9b subs r3, r3, r2 - 800043e: 40de lsrs r6, r3 - 8000440: 003b movs r3, r7 - 8000442: 4333 orrs r3, r6 - 8000444: e7cd b.n 80003e2 <__udivmoddi4+0x132> - 8000446: 46c0 nop ; (mov r8, r8) - -08000448 <__clzdi2>: - 8000448: b510 push {r4, lr} - 800044a: 2900 cmp r1, #0 - 800044c: d103 bne.n 8000456 <__clzdi2+0xe> - 800044e: f000 f807 bl 8000460 <__clzsi2> - 8000452: 3020 adds r0, #32 - 8000454: e002 b.n 800045c <__clzdi2+0x14> - 8000456: 1c08 adds r0, r1, #0 - 8000458: f000 f802 bl 8000460 <__clzsi2> - 800045c: bd10 pop {r4, pc} - 800045e: 46c0 nop ; (mov r8, r8) - -08000460 <__clzsi2>: - 8000460: 211c movs r1, #28 - 8000462: 2301 movs r3, #1 - 8000464: 041b lsls r3, r3, #16 - 8000466: 4298 cmp r0, r3 - 8000468: d301 bcc.n 800046e <__clzsi2+0xe> - 800046a: 0c00 lsrs r0, r0, #16 - 800046c: 3910 subs r1, #16 - 800046e: 0a1b lsrs r3, r3, #8 - 8000470: 4298 cmp r0, r3 - 8000472: d301 bcc.n 8000478 <__clzsi2+0x18> - 8000474: 0a00 lsrs r0, r0, #8 - 8000476: 3908 subs r1, #8 - 8000478: 091b lsrs r3, r3, #4 - 800047a: 4298 cmp r0, r3 - 800047c: d301 bcc.n 8000482 <__clzsi2+0x22> - 800047e: 0900 lsrs r0, r0, #4 - 8000480: 3904 subs r1, #4 - 8000482: a202 add r2, pc, #8 ; (adr r2, 800048c <__clzsi2+0x2c>) - 8000484: 5c10 ldrb r0, [r2, r0] - 8000486: 1840 adds r0, r0, r1 - 8000488: 4770 bx lr - 800048a: 46c0 nop ; (mov r8, r8) - 800048c: 02020304 .word 0x02020304 - 8000490: 01010101 .word 0x01010101 - ... - -0800049c : - * @retval None -*/ -__STATIC_INLINE void LL_IOP_GRP1_EnableClock(uint32_t Periphs) -{ - __IO uint32_t tmpreg; - SET_BIT(RCC->IOPENR, Periphs); - 800049c: 4b05 ldr r3, [pc, #20] ; (80004b4 ) -{ - 800049e: b082 sub sp, #8 - SET_BIT(RCC->IOPENR, Periphs); - 80004a0: 6ada ldr r2, [r3, #44] ; 0x2c - 80004a2: 4302 orrs r2, r0 - 80004a4: 62da str r2, [r3, #44] ; 0x2c - /* Delay after an RCC peripheral clock enabling */ - tmpreg = READ_BIT(RCC->IOPENR, Periphs); - 80004a6: 6adb ldr r3, [r3, #44] ; 0x2c - 80004a8: 4018 ands r0, r3 - 80004aa: 9001 str r0, [sp, #4] - (void)tmpreg; - 80004ac: 9b01 ldr r3, [sp, #4] -} - 80004ae: b002 add sp, #8 - 80004b0: 4770 bx lr - 80004b2: 46c0 nop ; (mov r8, r8) - 80004b4: 40021000 .word 0x40021000 - -080004b8 : -/** - * @brief System Clock Configuration - * @retval None - */ -void SystemClock_Config(void) -{ - 80004b8: b500 push {lr} - 80004ba: b099 sub sp, #100 ; 0x64 - RCC_OscInitTypeDef RCC_OscInitStruct = {0}; - 80004bc: 2230 movs r2, #48 ; 0x30 - 80004be: 2100 movs r1, #0 - 80004c0: a80c add r0, sp, #48 ; 0x30 - 80004c2: f001 f889 bl 80015d8 - RCC_ClkInitTypeDef RCC_ClkInitStruct = {0}; - 80004c6: 2214 movs r2, #20 - 80004c8: 2100 movs r1, #0 - 80004ca: 4668 mov r0, sp - 80004cc: f001 f884 bl 80015d8 - RCC_PeriphCLKInitTypeDef PeriphClkInit = {0}; - 80004d0: 2218 movs r2, #24 - 80004d2: 2100 movs r1, #0 - 80004d4: a805 add r0, sp, #20 - 80004d6: f001 f87f bl 80015d8 - - /** Configure the main internal regulator output voltage - */ - __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1); - 80004da: 4919 ldr r1, [pc, #100] ; (8000540 ) - 80004dc: 4a19 ldr r2, [pc, #100] ; (8000544 ) - 80004de: 680b ldr r3, [r1, #0] - RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_MSI; - RCC_OscInitStruct.MSIState = RCC_MSI_ON; - RCC_OscInitStruct.MSICalibrationValue = 0; - RCC_OscInitStruct.MSIClockRange = RCC_MSIRANGE_5; - RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE; - if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) - 80004e0: a80b add r0, sp, #44 ; 0x2c - __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1); - 80004e2: 401a ands r2, r3 - 80004e4: 2380 movs r3, #128 ; 0x80 - 80004e6: 011b lsls r3, r3, #4 - 80004e8: 4313 orrs r3, r2 - 80004ea: 600b str r3, [r1, #0] - RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_MSI; - 80004ec: 2310 movs r3, #16 - RCC_OscInitStruct.MSIClockRange = RCC_MSIRANGE_5; - 80004ee: 22a0 movs r2, #160 ; 0xa0 - RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_MSI; - 80004f0: 930b str r3, [sp, #44] ; 0x2c - RCC_OscInitStruct.MSIState = RCC_MSI_ON; - 80004f2: 3b0f subs r3, #15 - 80004f4: 9311 str r3, [sp, #68] ; 0x44 - RCC_OscInitStruct.MSICalibrationValue = 0; - 80004f6: 2300 movs r3, #0 - RCC_OscInitStruct.MSIClockRange = RCC_MSIRANGE_5; - 80004f8: 0212 lsls r2, r2, #8 - RCC_OscInitStruct.MSICalibrationValue = 0; - 80004fa: 9312 str r3, [sp, #72] ; 0x48 - RCC_OscInitStruct.MSIClockRange = RCC_MSIRANGE_5; - 80004fc: 9213 str r2, [sp, #76] ; 0x4c - RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE; - 80004fe: 9314 str r3, [sp, #80] ; 0x50 - if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) - 8000500: f000 faec bl 8000adc - 8000504: 1e01 subs r1, r0, #0 - 8000506: d001 beq.n 800050c - \details Disables IRQ interrupts by setting the I-bit in the CPSR. - Can only be executed in Privileged modes. - */ -__STATIC_FORCEINLINE void __disable_irq(void) -{ - __ASM volatile ("cpsid i" : : : "memory"); - 8000508: b672 cpsid i -void Error_Handler(void) -{ - /* USER CODE BEGIN Error_Handler_Debug */ - /* User can add his own implementation to report the HAL error return state */ - __disable_irq(); - while (1) - 800050a: e7fe b.n 800050a - RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK - 800050c: 230f movs r3, #15 - RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_MSI; - 800050e: 9001 str r0, [sp, #4] - RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1; - 8000510: 9002 str r0, [sp, #8] - RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1; - 8000512: 9003 str r0, [sp, #12] - RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1; - 8000514: 9004 str r0, [sp, #16] - if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_0) != HAL_OK) - 8000516: 4668 mov r0, sp - RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK - 8000518: 9300 str r3, [sp, #0] - if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_0) != HAL_OK) - 800051a: f000 fd2f bl 8000f7c - 800051e: 2800 cmp r0, #0 - 8000520: d001 beq.n 8000526 - 8000522: b672 cpsid i - while (1) - 8000524: e7fe b.n 8000524 - PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_LPUART1|RCC_PERIPHCLK_I2C1; - 8000526: 230c movs r3, #12 - PeriphClkInit.Lpuart1ClockSelection = RCC_LPUART1CLKSOURCE_PCLK1; - 8000528: 9008 str r0, [sp, #32] - PeriphClkInit.I2c1ClockSelection = RCC_I2C1CLKSOURCE_PCLK1; - 800052a: 9009 str r0, [sp, #36] ; 0x24 - if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK) - 800052c: a805 add r0, sp, #20 - PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_LPUART1|RCC_PERIPHCLK_I2C1; - 800052e: 9305 str r3, [sp, #20] - if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK) - 8000530: f000 fdf2 bl 8001118 - 8000534: 2800 cmp r0, #0 - 8000536: d001 beq.n 800053c - 8000538: b672 cpsid i - while (1) - 800053a: e7fe b.n 800053a -} - 800053c: b019 add sp, #100 ; 0x64 - 800053e: bd00 pop {pc} - 8000540: 40007000 .word 0x40007000 - 8000544: ffffe7ff .word 0xffffe7ff - -08000548
: -{ - 8000548: b5f0 push {r4, r5, r6, r7, lr} - 800054a: b091 sub sp, #68 ; 0x44 - HAL_Init(); - 800054c: f000 fa02 bl 8000954 - SystemClock_Config(); - 8000550: f7ff ffb2 bl 80004b8 - LL_GPIO_InitTypeDef GPIO_InitStruct = {0}; - 8000554: 2218 movs r2, #24 - 8000556: 2100 movs r1, #0 - 8000558: a809 add r0, sp, #36 ; 0x24 - 800055a: f001 f83d bl 80015d8 - LL_IOP_GRP1_EnableClock(LL_IOP_GRP1_PERIPH_GPIOA); - 800055e: 2001 movs r0, #1 - 8000560: f7ff ff9c bl 800049c - * @arg @ref LL_GPIO_PIN_ALL - * @retval None - */ -__STATIC_INLINE void LL_GPIO_SetOutputPin(GPIO_TypeDef *GPIOx, uint32_t PinMask) -{ - WRITE_REG(GPIOx->BSRR, PinMask); - 8000564: 25a0 movs r5, #160 ; 0xa0 - LL_IOP_GRP1_EnableClock(LL_IOP_GRP1_PERIPH_GPIOB); - 8000566: 2002 movs r0, #2 - 8000568: f7ff ff98 bl 800049c - 800056c: 2780 movs r7, #128 ; 0x80 - 800056e: 2320 movs r3, #32 - 8000570: 2240 movs r2, #64 ; 0x40 - GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_LOW; - 8000572: 2400 movs r4, #0 - GPIO_InitStruct.Mode = LL_GPIO_MODE_OUTPUT; - 8000574: 2601 movs r6, #1 - 8000576: 05ed lsls r5, r5, #23 - LL_GPIO_Init(LED_B_GPIO_Port, &GPIO_InitStruct); - 8000578: a809 add r0, sp, #36 ; 0x24 - 800057a: 61ab str r3, [r5, #24] - 800057c: 0001 movs r1, r0 - 800057e: 61aa str r2, [r5, #24] - 8000580: 0028 movs r0, r5 - 8000582: 61af str r7, [r5, #24] - GPIO_InitStruct.Pin = LED_B_Pin; - 8000584: 9309 str r3, [sp, #36] ; 0x24 - GPIO_InitStruct.Mode = LL_GPIO_MODE_OUTPUT; - 8000586: 960a str r6, [sp, #40] ; 0x28 - GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_LOW; - 8000588: 940b str r4, [sp, #44] ; 0x2c - GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_PUSHPULL; - 800058a: 940c str r4, [sp, #48] ; 0x30 - GPIO_InitStruct.Pull = LL_GPIO_PULL_NO; - 800058c: 940d str r4, [sp, #52] ; 0x34 - LL_GPIO_Init(LED_B_GPIO_Port, &GPIO_InitStruct); - 800058e: f000 fe7f bl 8001290 - GPIO_InitStruct.Pin = LED_G_Pin; - 8000592: 2240 movs r2, #64 ; 0x40 - LL_GPIO_Init(LED_G_GPIO_Port, &GPIO_InitStruct); - 8000594: a909 add r1, sp, #36 ; 0x24 - 8000596: 0028 movs r0, r5 - GPIO_InitStruct.Pin = LED_G_Pin; - 8000598: 9209 str r2, [sp, #36] ; 0x24 - GPIO_InitStruct.Mode = LL_GPIO_MODE_OUTPUT; - 800059a: 960a str r6, [sp, #40] ; 0x28 - GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_LOW; - 800059c: 940b str r4, [sp, #44] ; 0x2c - GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_PUSHPULL; - 800059e: 940c str r4, [sp, #48] ; 0x30 - GPIO_InitStruct.Pull = LL_GPIO_PULL_NO; - 80005a0: 940d str r4, [sp, #52] ; 0x34 - LL_GPIO_Init(LED_G_GPIO_Port, &GPIO_InitStruct); - 80005a2: f000 fe75 bl 8001290 - GPIO_InitStruct.Pin = LED_R_Pin; - 80005a6: 9709 str r7, [sp, #36] ; 0x24 - LL_GPIO_Init(LED_R_GPIO_Port, &GPIO_InitStruct); - 80005a8: a809 add r0, sp, #36 ; 0x24 - SET_BIT(RCC->AHBENR, Periphs); - 80005aa: 4f98 ldr r7, [pc, #608] ; (800080c ) - 80005ac: 0001 movs r1, r0 - 80005ae: 0028 movs r0, r5 - GPIO_InitStruct.Mode = LL_GPIO_MODE_OUTPUT; - 80005b0: 960a str r6, [sp, #40] ; 0x28 - GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_LOW; - 80005b2: 940b str r4, [sp, #44] ; 0x2c - GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_PUSHPULL; - 80005b4: 940c str r4, [sp, #48] ; 0x30 - GPIO_InitStruct.Pull = LL_GPIO_PULL_NO; - 80005b6: 940d str r4, [sp, #52] ; 0x34 - LL_GPIO_Init(LED_R_GPIO_Port, &GPIO_InitStruct); - 80005b8: f000 fe6a bl 8001290 - 80005bc: 6b3b ldr r3, [r7, #48] ; 0x30 - */ -__STATIC_INLINE void __NVIC_SetPriority(IRQn_Type IRQn, uint32_t priority) -{ - if ((int32_t)(IRQn) >= 0) - { - NVIC->IP[_IP_IDX(IRQn)] = ((uint32_t)(NVIC->IP[_IP_IDX(IRQn)] & ~(0xFFUL << _BIT_SHIFT(IRQn))) | - 80005be: 21c2 movs r1, #194 ; 0xc2 - 80005c0: 4333 orrs r3, r6 - 80005c2: 633b str r3, [r7, #48] ; 0x30 - tmpreg = READ_BIT(RCC->AHBENR, Periphs); - 80005c4: 6b3b ldr r3, [r7, #48] ; 0x30 - 80005c6: 0089 lsls r1, r1, #2 - 80005c8: 4033 ands r3, r6 - NVIC->ISER[0U] = (uint32_t)(1UL << (((uint32_t)IRQn) & 0x1FUL)); - 80005ca: 2680 movs r6, #128 ; 0x80 - 80005cc: 9300 str r3, [sp, #0] - (void)tmpreg; - 80005ce: 9b00 ldr r3, [sp, #0] - NVIC->IP[_IP_IDX(IRQn)] = ((uint32_t)(NVIC->IP[_IP_IDX(IRQn)] & ~(0xFFUL << _BIT_SHIFT(IRQn))) | - 80005d0: 4b8f ldr r3, [pc, #572] ; (8000810 ) - 80005d2: 4890 ldr r0, [pc, #576] ; (8000814 ) - 80005d4: 585a ldr r2, [r3, r1] - NVIC->ISER[0U] = (uint32_t)(1UL << (((uint32_t)IRQn) & 0x1FUL)); - 80005d6: 00f6 lsls r6, r6, #3 - NVIC->IP[_IP_IDX(IRQn)] = ((uint32_t)(NVIC->IP[_IP_IDX(IRQn)] & ~(0xFFUL << _BIT_SHIFT(IRQn))) | - 80005d8: 4002 ands r2, r0 - 80005da: 505a str r2, [r3, r1] - LL_I2C_InitTypeDef I2C_InitStruct = {0}; - 80005dc: a809 add r0, sp, #36 ; 0x24 - NVIC->ISER[0U] = (uint32_t)(1UL << (((uint32_t)IRQn) & 0x1FUL)); - 80005de: 601e str r6, [r3, #0] - 80005e0: 221c movs r2, #28 - 80005e2: 0021 movs r1, r4 - 80005e4: f000 fff8 bl 80015d8 - LL_GPIO_InitTypeDef GPIO_InitStruct = {0}; - 80005e8: 2218 movs r2, #24 - 80005ea: 0021 movs r1, r4 - 80005ec: a803 add r0, sp, #12 - 80005ee: f000 fff3 bl 80015d8 - LL_IOP_GRP1_EnableClock(LL_IOP_GRP1_PERIPH_GPIOA); - 80005f2: 2001 movs r0, #1 - 80005f4: f7ff ff52 bl 800049c - GPIO_InitStruct.Pin = LL_GPIO_PIN_9; - 80005f8: 2380 movs r3, #128 ; 0x80 - GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_VERY_HIGH; - 80005fa: 2103 movs r1, #3 - GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_OPENDRAIN; - 80005fc: 2201 movs r2, #1 - GPIO_InitStruct.Pin = LL_GPIO_PIN_9; - 80005fe: 009b lsls r3, r3, #2 - 8000600: 9303 str r3, [sp, #12] - LL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 8000602: a803 add r0, sp, #12 - GPIO_InitStruct.Mode = LL_GPIO_MODE_ALTERNATE; - 8000604: 3bff subs r3, #255 ; 0xff - 8000606: 3bff subs r3, #255 ; 0xff - GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_VERY_HIGH; - 8000608: 9105 str r1, [sp, #20] - LL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 800060a: 0001 movs r1, r0 - 800060c: 0028 movs r0, r5 - GPIO_InitStruct.Mode = LL_GPIO_MODE_ALTERNATE; - 800060e: 9304 str r3, [sp, #16] - GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_OPENDRAIN; - 8000610: 9206 str r2, [sp, #24] - GPIO_InitStruct.Pull = LL_GPIO_PULL_UP; - 8000612: 9207 str r2, [sp, #28] - GPIO_InitStruct.Alternate = LL_GPIO_AF_1; - 8000614: 9208 str r2, [sp, #32] - LL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 8000616: f000 fe3b bl 8001290 - GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_VERY_HIGH; - 800061a: 2103 movs r1, #3 - GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_OPENDRAIN; - 800061c: 2201 movs r2, #1 - GPIO_InitStruct.Mode = LL_GPIO_MODE_ALTERNATE; - 800061e: 2302 movs r3, #2 - GPIO_InitStruct.Pin = LL_GPIO_PIN_10; - 8000620: 9603 str r6, [sp, #12] - LL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 8000622: ae03 add r6, sp, #12 - GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_VERY_HIGH; - 8000624: 9105 str r1, [sp, #20] - LL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 8000626: 0028 movs r0, r5 - 8000628: 0031 movs r1, r6 - GPIO_InitStruct.Mode = LL_GPIO_MODE_ALTERNATE; - 800062a: 9304 str r3, [sp, #16] - GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_OPENDRAIN; - 800062c: 9206 str r2, [sp, #24] - GPIO_InitStruct.Pull = LL_GPIO_PULL_UP; - 800062e: 9207 str r2, [sp, #28] - GPIO_InitStruct.Alternate = LL_GPIO_AF_1; - 8000630: 9208 str r2, [sp, #32] - LL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 8000632: f000 fe2d bl 8001290 - SET_BIT(RCC->APB1ENR, Periphs); - 8000636: 2180 movs r1, #128 ; 0x80 - 8000638: 6bba ldr r2, [r7, #56] ; 0x38 - 800063a: 0389 lsls r1, r1, #14 - 800063c: 430a orrs r2, r1 - 800063e: 63ba str r2, [r7, #56] ; 0x38 - tmpreg = READ_BIT(RCC->APB1ENR, Periphs); - 8000640: 6bbb ldr r3, [r7, #56] ; 0x38 - * @param I2Cx I2C Instance. - * @retval None - */ -__STATIC_INLINE void LL_I2C_EnableAutoEndMode(I2C_TypeDef *I2Cx) -{ - SET_BIT(I2Cx->CR2, I2C_CR2_AUTOEND); - 8000642: 4e75 ldr r6, [pc, #468] ; (8000818 ) - 8000644: 400b ands r3, r1 - 8000646: 9301 str r3, [sp, #4] - (void)tmpreg; - 8000648: 9b01 ldr r3, [sp, #4] - 800064a: 2380 movs r3, #128 ; 0x80 - 800064c: 6872 ldr r2, [r6, #4] - 800064e: 049b lsls r3, r3, #18 - 8000650: 4313 orrs r3, r2 - 8000652: 6073 str r3, [r6, #4] - CLEAR_BIT(I2Cx->OAR2, I2C_OAR2_OA2EN); - 8000654: 68f3 ldr r3, [r6, #12] - 8000656: 4871 ldr r0, [pc, #452] ; (800081c ) - CLEAR_BIT(I2Cx->CR1, I2C_CR1_GCEN); - 8000658: 4a71 ldr r2, [pc, #452] ; (8000820 ) - CLEAR_BIT(I2Cx->OAR2, I2C_OAR2_OA2EN); - 800065a: 4003 ands r3, r0 - 800065c: 60f3 str r3, [r6, #12] - CLEAR_BIT(I2Cx->CR1, I2C_CR1_GCEN); - 800065e: 6833 ldr r3, [r6, #0] - LL_I2C_Init(I2C1, &I2C_InitStruct); - 8000660: 0030 movs r0, r6 - 8000662: 4013 ands r3, r2 - 8000664: 6033 str r3, [r6, #0] - CLEAR_BIT(I2Cx->CR1, I2C_CR1_NOSTRETCH); - 8000666: 6833 ldr r3, [r6, #0] - 8000668: 4a6e ldr r2, [pc, #440] ; (8000824 ) - 800066a: 4013 ands r3, r2 - 800066c: 6033 str r3, [r6, #0] - I2C_InitStruct.Timing = 0x00000708; - 800066e: 23e1 movs r3, #225 ; 0xe1 - LL_I2C_Init(I2C1, &I2C_InitStruct); - 8000670: aa09 add r2, sp, #36 ; 0x24 - 8000672: 0011 movs r1, r2 - I2C_InitStruct.Timing = 0x00000708; - 8000674: 00db lsls r3, r3, #3 - 8000676: 930a str r3, [sp, #40] ; 0x28 - I2C_InitStruct.PeripheralMode = LL_I2C_MODE_I2C; - 8000678: 9409 str r4, [sp, #36] ; 0x24 - I2C_InitStruct.AnalogFilter = LL_I2C_ANALOGFILTER_ENABLE; - 800067a: 940b str r4, [sp, #44] ; 0x2c - I2C_InitStruct.DigitalFilter = 0; - 800067c: 940c str r4, [sp, #48] ; 0x30 - I2C_InitStruct.OwnAddress1 = 0; - 800067e: 940d str r4, [sp, #52] ; 0x34 - I2C_InitStruct.TypeAcknowledge = LL_I2C_ACK; - 8000680: 940e str r4, [sp, #56] ; 0x38 - I2C_InitStruct.OwnAddrSize = LL_I2C_OWNADDRESS1_7BIT; - 8000682: 940f str r4, [sp, #60] ; 0x3c - LL_I2C_Init(I2C1, &I2C_InitStruct); - 8000684: f000 fe56 bl 8001334 - MODIFY_REG(I2Cx->OAR2, I2C_OAR2_OA2 | I2C_OAR2_OA2MSK, OwnAddress2 | OwnAddrMask); - 8000688: 68f3 ldr r3, [r6, #12] - 800068a: 4a67 ldr r2, [pc, #412] ; (8000828 ) - LL_LPUART_InitTypeDef LPUART_InitStruct = {0}; - 800068c: 0021 movs r1, r4 - 800068e: 4013 ands r3, r2 - 8000690: 60f3 str r3, [r6, #12] - 8000692: ae03 add r6, sp, #12 - 8000694: 2218 movs r2, #24 - 8000696: 0030 movs r0, r6 - LL_GPIO_InitTypeDef GPIO_InitStruct = {0}; - 8000698: ae09 add r6, sp, #36 ; 0x24 - LL_LPUART_InitTypeDef LPUART_InitStruct = {0}; - 800069a: f000 ff9d bl 80015d8 - LL_GPIO_InitTypeDef GPIO_InitStruct = {0}; - 800069e: 2218 movs r2, #24 - 80006a0: 0021 movs r1, r4 - 80006a2: 0030 movs r0, r6 - 80006a4: f000 ff98 bl 80015d8 - SET_BIT(RCC->APB1ENR, Periphs); - 80006a8: 2180 movs r1, #128 ; 0x80 - 80006aa: 6bba ldr r2, [r7, #56] ; 0x38 - 80006ac: 02c9 lsls r1, r1, #11 - 80006ae: 430a orrs r2, r1 - 80006b0: 63ba str r2, [r7, #56] ; 0x38 - tmpreg = READ_BIT(RCC->APB1ENR, Periphs); - 80006b2: 6bbb ldr r3, [r7, #56] ; 0x38 - LL_IOP_GRP1_EnableClock(LL_IOP_GRP1_PERIPH_GPIOA); - 80006b4: 2001 movs r0, #1 - 80006b6: 400b ands r3, r1 - 80006b8: 9302 str r3, [sp, #8] - (void)tmpreg; - 80006ba: 9b02 ldr r3, [sp, #8] - 80006bc: f7ff feee bl 800049c - LL_IOP_GRP1_EnableClock(LL_IOP_GRP1_PERIPH_GPIOB); - 80006c0: 2002 movs r0, #2 - 80006c2: f7ff feeb bl 800049c - GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_VERY_HIGH; - 80006c6: 2103 movs r1, #3 - GPIO_InitStruct.Pin = LL_GPIO_PIN_0; - 80006c8: 2701 movs r7, #1 - GPIO_InitStruct.Mode = LL_GPIO_MODE_ALTERNATE; - 80006ca: 2302 movs r3, #2 - GPIO_InitStruct.Alternate = LL_GPIO_AF_6; - 80006cc: 2606 movs r6, #6 - LL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 80006ce: aa09 add r2, sp, #36 ; 0x24 - GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_VERY_HIGH; - 80006d0: 910b str r1, [sp, #44] ; 0x2c - LL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 80006d2: 0028 movs r0, r5 - 80006d4: 0011 movs r1, r2 - GPIO_InitStruct.Pin = LL_GPIO_PIN_0; - 80006d6: 9709 str r7, [sp, #36] ; 0x24 - GPIO_InitStruct.Mode = LL_GPIO_MODE_ALTERNATE; - 80006d8: 930a str r3, [sp, #40] ; 0x28 - GPIO_InitStruct.Alternate = LL_GPIO_AF_6; - 80006da: 960e str r6, [sp, #56] ; 0x38 - GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_PUSHPULL; - 80006dc: 940c str r4, [sp, #48] ; 0x30 - GPIO_InitStruct.Pull = LL_GPIO_PULL_NO; - 80006de: 940d str r4, [sp, #52] ; 0x34 - LL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 80006e0: f000 fdd6 bl 8001290 - GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_VERY_HIGH; - 80006e4: 2103 movs r1, #3 - GPIO_InitStruct.Pin = LL_GPIO_PIN_1; - 80006e6: 2302 movs r3, #2 - GPIO_InitStruct.Alternate = LL_GPIO_AF_6; - 80006e8: 960e str r6, [sp, #56] ; 0x38 - LL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 80006ea: ae09 add r6, sp, #36 ; 0x24 - GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_VERY_HIGH; - 80006ec: 910b str r1, [sp, #44] ; 0x2c - LL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 80006ee: 0028 movs r0, r5 - 80006f0: 0031 movs r1, r6 - GPIO_InitStruct.Pin = LL_GPIO_PIN_1; - 80006f2: 9309 str r3, [sp, #36] ; 0x24 - GPIO_InitStruct.Mode = LL_GPIO_MODE_ALTERNATE; - 80006f4: 930a str r3, [sp, #40] ; 0x28 - GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_PUSHPULL; - 80006f6: 940c str r4, [sp, #48] ; 0x30 - GPIO_InitStruct.Pull = LL_GPIO_PULL_NO; - 80006f8: 940d str r4, [sp, #52] ; 0x34 - LL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 80006fa: f000 fdc9 bl 8001290 - GPIO_InitStruct.Pin = LL_GPIO_PIN_1; - 80006fe: 2302 movs r3, #2 - GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_VERY_HIGH; - 8000700: 2103 movs r1, #3 - LL_GPIO_Init(GPIOB, &GPIO_InitStruct); - 8000702: ae09 add r6, sp, #36 ; 0x24 - GPIO_InitStruct.Pin = LL_GPIO_PIN_1; - 8000704: 9309 str r3, [sp, #36] ; 0x24 - GPIO_InitStruct.Mode = LL_GPIO_MODE_ALTERNATE; - 8000706: 930a str r3, [sp, #40] ; 0x28 - GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_VERY_HIGH; - 8000708: 910b str r1, [sp, #44] ; 0x2c - GPIO_InitStruct.Alternate = LL_GPIO_AF_4; - 800070a: 18db adds r3, r3, r3 - LL_GPIO_Init(GPIOB, &GPIO_InitStruct); - 800070c: 0031 movs r1, r6 - 800070e: 4847 ldr r0, [pc, #284] ; (800082c ) - GPIO_InitStruct.Alternate = LL_GPIO_AF_4; - 8000710: 930e str r3, [sp, #56] ; 0x38 - GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_PUSHPULL; - 8000712: 940c str r4, [sp, #48] ; 0x30 - GPIO_InitStruct.Pull = LL_GPIO_PULL_NO; - 8000714: 940d str r4, [sp, #52] ; 0x34 - LL_GPIO_Init(GPIOB, &GPIO_InitStruct); - 8000716: f000 fdbb bl 8001290 - * @arg @ref LL_DMA_REQUEST_15 - * @retval None - */ -__STATIC_INLINE void LL_DMA_SetPeriphRequest(DMA_TypeDef *DMAx, uint32_t Channel, uint32_t Request) -{ - MODIFY_REG(((DMA_Request_TypeDef *)((uint32_t)((uint32_t)DMAx + DMA_CSELR_OFFSET)))->CSELR, - 800071a: 4945 ldr r1, [pc, #276] ; (8000830 ) - 800071c: 4a45 ldr r2, [pc, #276] ; (8000834 ) - 800071e: 680b ldr r3, [r1, #0] - MODIFY_REG(((DMA_Channel_TypeDef *)((uint32_t)((uint32_t)DMAx + CHANNEL_OFFSET_TAB[Channel - 1U])))->CCR, DMA_CCR_PINC, - 8000720: 2040 movs r0, #64 ; 0x40 - MODIFY_REG(((DMA_Request_TypeDef *)((uint32_t)((uint32_t)DMAx + DMA_CSELR_OFFSET)))->CSELR, - 8000722: 401a ands r2, r3 - 8000724: 23a0 movs r3, #160 ; 0xa0 - 8000726: 00db lsls r3, r3, #3 - 8000728: 4313 orrs r3, r2 - 800072a: 600b str r3, [r1, #0] - MODIFY_REG(((DMA_Channel_TypeDef *)((uint32_t)((uint32_t)DMAx + CHANNEL_OFFSET_TAB[Channel - 1U])))->CCR, - 800072c: 4b42 ldr r3, [pc, #264] ; (8000838 ) - 800072e: 4943 ldr r1, [pc, #268] ; (800083c ) - 8000730: 681a ldr r2, [r3, #0] - LL_LPUART_Init(LPUART1, &LPUART_InitStruct); - 8000732: 4e43 ldr r6, [pc, #268] ; (8000840 ) - 8000734: 400a ands r2, r1 - 8000736: 601a str r2, [r3, #0] - MODIFY_REG(((DMA_Channel_TypeDef *)((uint32_t)((uint32_t)DMAx + CHANNEL_OFFSET_TAB[Channel - 1U])))->CCR, DMA_CCR_PL, - 8000738: 681a ldr r2, [r3, #0] - 800073a: 4942 ldr r1, [pc, #264] ; (8000844 ) - 800073c: 4011 ands r1, r2 - 800073e: 2280 movs r2, #128 ; 0x80 - 8000740: 0152 lsls r2, r2, #5 - 8000742: 430a orrs r2, r1 - MODIFY_REG(((DMA_Channel_TypeDef *)((uint32_t)((uint32_t)DMAx + CHANNEL_OFFSET_TAB[Channel - 1U])))->CCR, DMA_CCR_CIRC, - 8000744: 2120 movs r1, #32 - MODIFY_REG(((DMA_Channel_TypeDef *)((uint32_t)((uint32_t)DMAx + CHANNEL_OFFSET_TAB[Channel - 1U])))->CCR, DMA_CCR_PL, - 8000746: 601a str r2, [r3, #0] - MODIFY_REG(((DMA_Channel_TypeDef *)((uint32_t)((uint32_t)DMAx + CHANNEL_OFFSET_TAB[Channel - 1U])))->CCR, DMA_CCR_CIRC, - 8000748: 681a ldr r2, [r3, #0] - 800074a: 438a bics r2, r1 - 800074c: 430a orrs r2, r1 - 800074e: 601a str r2, [r3, #0] - MODIFY_REG(((DMA_Channel_TypeDef *)((uint32_t)((uint32_t)DMAx + CHANNEL_OFFSET_TAB[Channel - 1U])))->CCR, DMA_CCR_PINC, - 8000750: 681a ldr r2, [r3, #0] - MODIFY_REG(((DMA_Channel_TypeDef *)((uint32_t)((uint32_t)DMAx + CHANNEL_OFFSET_TAB[Channel - 1U])))->CCR, DMA_CCR_MINC, - 8000752: 3160 adds r1, #96 ; 0x60 - MODIFY_REG(((DMA_Channel_TypeDef *)((uint32_t)((uint32_t)DMAx + CHANNEL_OFFSET_TAB[Channel - 1U])))->CCR, DMA_CCR_PINC, - 8000754: 4382 bics r2, r0 - 8000756: 601a str r2, [r3, #0] - MODIFY_REG(((DMA_Channel_TypeDef *)((uint32_t)((uint32_t)DMAx + CHANNEL_OFFSET_TAB[Channel - 1U])))->CCR, DMA_CCR_MINC, - 8000758: 681a ldr r2, [r3, #0] - 800075a: 0030 movs r0, r6 - 800075c: 438a bics r2, r1 - 800075e: 430a orrs r2, r1 - 8000760: 601a str r2, [r3, #0] - MODIFY_REG(((DMA_Channel_TypeDef *)((uint32_t)((uint32_t)DMAx + CHANNEL_OFFSET_TAB[Channel - 1U])))->CCR, DMA_CCR_PSIZE, - 8000762: 681a ldr r2, [r3, #0] - 8000764: 4938 ldr r1, [pc, #224] ; (8000848 ) - 8000766: 400a ands r2, r1 - 8000768: 601a str r2, [r3, #0] - MODIFY_REG(((DMA_Channel_TypeDef *)((uint32_t)((uint32_t)DMAx + CHANNEL_OFFSET_TAB[Channel - 1U])))->CCR, DMA_CCR_MSIZE, - 800076a: 681a ldr r2, [r3, #0] - 800076c: 4937 ldr r1, [pc, #220] ; (800084c ) - 800076e: 400a ands r2, r1 - 8000770: 601a str r2, [r3, #0] - LPUART_InitStruct.BaudRate = 115200; - 8000772: 23e1 movs r3, #225 ; 0xe1 - 8000774: 025b lsls r3, r3, #9 - 8000776: 9303 str r3, [sp, #12] - LPUART_InitStruct.TransferDirection = LL_LPUART_DIRECTION_TX_RX; - 8000778: 230c movs r3, #12 - LL_LPUART_Init(LPUART1, &LPUART_InitStruct); - 800077a: a903 add r1, sp, #12 - LPUART_InitStruct.TransferDirection = LL_LPUART_DIRECTION_TX_RX; - 800077c: 9307 str r3, [sp, #28] - LPUART_InitStruct.DataWidth = LL_LPUART_DATAWIDTH_8B; - 800077e: 9404 str r4, [sp, #16] - LPUART_InitStruct.StopBits = LL_LPUART_STOPBITS_1; - 8000780: 9405 str r4, [sp, #20] - LPUART_InitStruct.Parity = LL_LPUART_PARITY_NONE; - 8000782: 9406 str r4, [sp, #24] - LPUART_InitStruct.HardwareFlowControl = LL_LPUART_HWCONTROL_NONE; - 8000784: 9408 str r4, [sp, #32] - LL_LPUART_Init(LPUART1, &LPUART_InitStruct); - 8000786: f000 fe0f bl 80013a8 - * @param LPUARTx LPUART Instance - * @retval None - */ -__STATIC_INLINE void LL_LPUART_EnableDEMode(USART_TypeDef *LPUARTx) -{ - SET_BIT(LPUARTx->CR3, USART_CR3_DEM); - 800078a: 2380 movs r3, #128 ; 0x80 - 800078c: 68b2 ldr r2, [r6, #8] - 800078e: 01db lsls r3, r3, #7 - 8000790: 4313 orrs r3, r2 - 8000792: 60b3 str r3, [r6, #8] - * @arg @ref LL_LPUART_DE_POLARITY_LOW - * @retval None - */ -__STATIC_INLINE void LL_LPUART_SetDESignalPolarity(USART_TypeDef *LPUARTx, uint32_t Polarity) -{ - MODIFY_REG(LPUARTx->CR3, USART_CR3_DEP, Polarity); - 8000794: 68b3 ldr r3, [r6, #8] - 8000796: 4821 ldr r0, [pc, #132] ; (800081c ) - MODIFY_REG(LPUARTx->CR1, USART_CR1_DEAT, Time << USART_CR1_DEAT_Pos); - 8000798: 4a2d ldr r2, [pc, #180] ; (8000850 ) - MODIFY_REG(LPUARTx->CR3, USART_CR3_DEP, Polarity); - 800079a: 4003 ands r3, r0 - 800079c: 60b3 str r3, [r6, #8] - MODIFY_REG(LPUARTx->CR1, USART_CR1_DEAT, Time << USART_CR1_DEAT_Pos); - 800079e: 6833 ldr r3, [r6, #0] - 80007a0: 401a ands r2, r3 - 80007a2: 23a0 movs r3, #160 ; 0xa0 - 80007a4: 049b lsls r3, r3, #18 - 80007a6: 4313 orrs r3, r2 - 80007a8: 6033 str r3, [r6, #0] - MODIFY_REG(LPUARTx->CR1, USART_CR1_DEDT, Time << USART_CR1_DEDT_Pos); - 80007aa: 6833 ldr r3, [r6, #0] - 80007ac: 4a29 ldr r2, [pc, #164] ; (8000854 ) - 80007ae: 401a ands r2, r3 - 80007b0: 23a0 movs r3, #160 ; 0xa0 - 80007b2: 035b lsls r3, r3, #13 - 80007b4: 4313 orrs r3, r2 - 80007b6: 6033 str r3, [r6, #0] - SET_BIT(LPUARTx->CR1, USART_CR1_UE); - 80007b8: 6833 ldr r3, [r6, #0] - 80007ba: 433b orrs r3, r7 - 80007bc: 6033 str r3, [r6, #0] - * @retval None - */ -__STATIC_INLINE void LL_GPIO_TogglePin(GPIO_TypeDef *GPIOx, uint32_t PinMask) -{ - uint32_t odr = READ_REG(GPIOx->ODR); - WRITE_REG(GPIOx->BSRR, ((odr & PinMask) << 16u) | (~odr & PinMask)); - 80007be: 377f adds r7, #127 ; 0x7f - 80007c0: 2180 movs r1, #128 ; 0x80 - uint32_t odr = READ_REG(GPIOx->ODR); - 80007c2: 696a ldr r2, [r5, #20] - WRITE_REG(GPIOx->BSRR, ((odr & PinMask) << 16u) | (~odr & PinMask)); - 80007c4: 0409 lsls r1, r1, #16 - 80007c6: 0413 lsls r3, r2, #16 - 80007c8: 400b ands r3, r1 - 80007ca: 0039 movs r1, r7 - 80007cc: 4391 bics r1, r2 - 80007ce: 2280 movs r2, #128 ; 0x80 - 80007d0: 430b orrs r3, r1 - 80007d2: 61ab str r3, [r5, #24] - uint32_t odr = READ_REG(GPIOx->ODR); - 80007d4: 6969 ldr r1, [r5, #20] - WRITE_REG(GPIOx->BSRR, ((odr & PinMask) << 16u) | (~odr & PinMask)); - 80007d6: 03d2 lsls r2, r2, #15 - 80007d8: 040b lsls r3, r1, #16 - 80007da: 4013 ands r3, r2 - 80007dc: 2240 movs r2, #64 ; 0x40 - 80007de: 438a bics r2, r1 - 80007e0: 4313 orrs r3, r2 - 80007e2: 2280 movs r2, #128 ; 0x80 - 80007e4: 61ab str r3, [r5, #24] - uint32_t odr = READ_REG(GPIOx->ODR); - 80007e6: 6969 ldr r1, [r5, #20] - WRITE_REG(GPIOx->BSRR, ((odr & PinMask) << 16u) | (~odr & PinMask)); - 80007e8: 0392 lsls r2, r2, #14 - 80007ea: 040b lsls r3, r1, #16 - 80007ec: 4013 ands r3, r2 - 80007ee: 2220 movs r2, #32 - 80007f0: 438a bics r2, r1 - 80007f2: 4313 orrs r3, r2 - 80007f4: 61ab str r3, [r5, #24] - * @param LPUARTx LPUART Instance - * @retval State of bit (1 or 0). - */ -__STATIC_INLINE uint32_t LL_LPUART_IsActiveFlag_TXE(USART_TypeDef *LPUARTx) -{ - return ((READ_BIT(LPUARTx->ISR, USART_ISR_TXE) == (USART_ISR_TXE)) ? 1UL : 0UL); - 80007f6: 69f3 ldr r3, [r6, #28] - 80007f8: 423b tst r3, r7 - 80007fa: d0fc beq.n 80007f6 - HAL_Delay(1000); - 80007fc: 20fa movs r0, #250 ; 0xfa - * @param Value between Min_Data=0x00 and Max_Data=0xFF - * @retval None - */ -__STATIC_INLINE void LL_LPUART_TransmitData8(USART_TypeDef *LPUARTx, uint8_t Value) -{ - LPUARTx->TDR = Value; - 80007fe: 62b4 str r4, [r6, #40] ; 0x28 - 8000800: 0080 lsls r0, r0, #2 - i++; - 8000802: 3401 adds r4, #1 - 8000804: b2e4 uxtb r4, r4 - HAL_Delay(1000); - 8000806: f000 f8cb bl 80009a0 - LL_GPIO_TogglePin(LED_R_GPIO_Port, LED_R_Pin); - 800080a: e7d9 b.n 80007c0 - 800080c: 40021000 .word 0x40021000 - 8000810: e000e100 .word 0xe000e100 - 8000814: ff00ffff .word 0xff00ffff - 8000818: 40005400 .word 0x40005400 - 800081c: ffff7fff .word 0xffff7fff - 8000820: fff7ffff .word 0xfff7ffff - 8000824: fffdffff .word 0xfffdffff - 8000828: fffff801 .word 0xfffff801 - 800082c: 50000400 .word 0x50000400 - 8000830: 400200a8 .word 0x400200a8 - 8000834: fffff0ff .word 0xfffff0ff - 8000838: 40020030 .word 0x40020030 - 800083c: ffffbfef .word 0xffffbfef - 8000840: 40004800 .word 0x40004800 - 8000844: ffffcfff .word 0xffffcfff - 8000848: fffffcff .word 0xfffffcff - 800084c: fffff3ff .word 0xfffff3ff - 8000850: fc1fffff .word 0xfc1fffff - 8000854: ffe0ffff .word 0xffe0ffff - -08000858 : -{ - /* USER CODE BEGIN MspInit 0 */ - - /* USER CODE END MspInit 0 */ - - __HAL_RCC_SYSCFG_CLK_ENABLE(); - 8000858: 2201 movs r2, #1 - 800085a: 4b05 ldr r3, [pc, #20] ; (8000870 ) - 800085c: 6b59 ldr r1, [r3, #52] ; 0x34 - 800085e: 430a orrs r2, r1 - 8000860: 635a str r2, [r3, #52] ; 0x34 - __HAL_RCC_PWR_CLK_ENABLE(); - 8000862: 2280 movs r2, #128 ; 0x80 - 8000864: 6b99 ldr r1, [r3, #56] ; 0x38 - 8000866: 0552 lsls r2, r2, #21 - 8000868: 430a orrs r2, r1 - 800086a: 639a str r2, [r3, #56] ; 0x38 - /* System interrupt init*/ - - /* USER CODE BEGIN MspInit 1 */ - - /* USER CODE END MspInit 1 */ -} - 800086c: 4770 bx lr - 800086e: 46c0 nop ; (mov r8, r8) - 8000870: 40021000 .word 0x40021000 - -08000874 : -{ - /* USER CODE BEGIN NonMaskableInt_IRQn 0 */ - - /* USER CODE END NonMaskableInt_IRQn 0 */ - /* USER CODE BEGIN NonMaskableInt_IRQn 1 */ - while (1) - 8000874: e7fe b.n 8000874 - -08000876 : -void HardFault_Handler(void) -{ - /* USER CODE BEGIN HardFault_IRQn 0 */ - - /* USER CODE END HardFault_IRQn 0 */ - while (1) - 8000876: e7fe b.n 8000876 - -08000878 : - - /* USER CODE END SVC_IRQn 0 */ - /* USER CODE BEGIN SVC_IRQn 1 */ - - /* USER CODE END SVC_IRQn 1 */ -} - 8000878: 4770 bx lr - -0800087a : - 800087a: 4770 bx lr - -0800087c : - -/** - * @brief This function handles System tick timer. - */ -void SysTick_Handler(void) -{ - 800087c: b510 push {r4, lr} - /* USER CODE BEGIN SysTick_IRQn 0 */ - - /* USER CODE END SysTick_IRQn 0 */ - HAL_IncTick(); - 800087e: f000 f87d bl 800097c - /* USER CODE BEGIN SysTick_IRQn 1 */ - /* USER CODE END SysTick_IRQn 1 */ -} - 8000882: bd10 pop {r4, pc} - -08000884 : - 8000884: 4770 bx lr - -08000886 : -{ - /* Configure the Vector Table location add offset address ------------------*/ -#if defined (USER_VECT_TAB_ADDRESS) - SCB->VTOR = VECT_TAB_BASE_ADDRESS | VECT_TAB_OFFSET; /* Vector Table Relocation in Internal SRAM */ -#endif /* USER_VECT_TAB_ADDRESS */ -} - 8000886: 4770 bx lr - -08000888 : - - .section .text.Reset_Handler - .weak Reset_Handler - .type Reset_Handler, %function -Reset_Handler: - ldr r0, =_estack - 8000888: 4813 ldr r0, [pc, #76] ; (80008d8 ) - mov sp, r0 /* set stack pointer */ - 800088a: 4685 mov sp, r0 - -/*Check if boot space corresponds to system memory*/ - - LDR R0,=0x00000004 - 800088c: 4813 ldr r0, [pc, #76] ; (80008dc ) - LDR R1, [R0] - 800088e: 6801 ldr r1, [r0, #0] - LSRS R1, R1, #24 - 8000890: 0e09 lsrs r1, r1, #24 - LDR R2,=0x1F - 8000892: 4a13 ldr r2, [pc, #76] ; (80008e0 ) - CMP R1, R2 - 8000894: 4291 cmp r1, r2 - BNE ApplicationStart - 8000896: d105 bne.n 80008a4 - - /*SYSCFG clock enable*/ - LDR R0,=0x40021034 - 8000898: 4812 ldr r0, [pc, #72] ; (80008e4 ) - LDR R1,=0x00000001 - 800089a: 4913 ldr r1, [pc, #76] ; (80008e8 ) - STR R1, [R0] - 800089c: 6001 str r1, [r0, #0] - -/*Set CFGR1 register with flash memory remap at address 0*/ - LDR R0,=0x40010000 - 800089e: 4813 ldr r0, [pc, #76] ; (80008ec ) - LDR R1,=0x00000000 - 80008a0: 4913 ldr r1, [pc, #76] ; (80008f0 ) - STR R1, [R0] - 80008a2: 6001 str r1, [r0, #0] - -080008a4 : - -ApplicationStart: -/* Copy the data segment initializers from flash to SRAM */ - ldr r0, =_sdata - 80008a4: 4813 ldr r0, [pc, #76] ; (80008f4 ) - ldr r1, =_edata - 80008a6: 4914 ldr r1, [pc, #80] ; (80008f8 ) - ldr r2, =_sidata - 80008a8: 4a14 ldr r2, [pc, #80] ; (80008fc ) - movs r3, #0 - 80008aa: 2300 movs r3, #0 - b LoopCopyDataInit - 80008ac: e002 b.n 80008b4 - -080008ae : - -CopyDataInit: - ldr r4, [r2, r3] - 80008ae: 58d4 ldr r4, [r2, r3] - str r4, [r0, r3] - 80008b0: 50c4 str r4, [r0, r3] - adds r3, r3, #4 - 80008b2: 3304 adds r3, #4 - -080008b4 : - -LoopCopyDataInit: - adds r4, r0, r3 - 80008b4: 18c4 adds r4, r0, r3 - cmp r4, r1 - 80008b6: 428c cmp r4, r1 - bcc CopyDataInit - 80008b8: d3f9 bcc.n 80008ae - -/* Zero fill the bss segment. */ - ldr r2, =_sbss - 80008ba: 4a11 ldr r2, [pc, #68] ; (8000900 ) - ldr r4, =_ebss - 80008bc: 4c11 ldr r4, [pc, #68] ; (8000904 ) - movs r3, #0 - 80008be: 2300 movs r3, #0 - b LoopFillZerobss - 80008c0: e001 b.n 80008c6 - -080008c2 : - -FillZerobss: - str r3, [r2] - 80008c2: 6013 str r3, [r2, #0] - adds r2, r2, #4 - 80008c4: 3204 adds r2, #4 - -080008c6 : - -LoopFillZerobss: - cmp r2, r4 - 80008c6: 42a2 cmp r2, r4 - bcc FillZerobss - 80008c8: d3fb bcc.n 80008c2 - -/* Call the clock system intitialization function.*/ - bl SystemInit - 80008ca: f7ff ffdc bl 8000886 -/* Call static constructors */ - bl __libc_init_array - 80008ce: f000 fe5f bl 8001590 <__libc_init_array> -/* Call the application's entry point.*/ - bl main - 80008d2: f7ff fe39 bl 8000548
- -080008d6 : - -LoopForever: - b LoopForever - 80008d6: e7fe b.n 80008d6 - ldr r0, =_estack - 80008d8: 20000800 .word 0x20000800 - LDR R0,=0x00000004 - 80008dc: 00000004 .word 0x00000004 - LDR R2,=0x1F - 80008e0: 0000001f .word 0x0000001f - LDR R0,=0x40021034 - 80008e4: 40021034 .word 0x40021034 - LDR R1,=0x00000001 - 80008e8: 00000001 .word 0x00000001 - LDR R0,=0x40010000 - 80008ec: 40010000 .word 0x40010000 - LDR R1,=0x00000000 - 80008f0: 00000000 .word 0x00000000 - ldr r0, =_sdata - 80008f4: 20000000 .word 0x20000000 - ldr r1, =_edata - 80008f8: 2000000c .word 0x2000000c - ldr r2, =_sidata - 80008fc: 08001634 .word 0x08001634 - ldr r2, =_sbss - 8000900: 2000000c .word 0x2000000c - ldr r4, =_ebss - 8000904: 2000002c .word 0x2000002c - -08000908 : - * @retval : None -*/ - .section .text.Default_Handler,"ax",%progbits -Default_Handler: -Infinite_Loop: - b Infinite_Loop - 8000908: e7fe b.n 8000908 - ... - -0800090c : - * implementation in user file. - * @param TickPriority Tick interrupt priority. - * @retval HAL status - */ -__weak HAL_StatusTypeDef HAL_InitTick(uint32_t TickPriority) -{ - 800090c: b570 push {r4, r5, r6, lr} - 800090e: 0005 movs r5, r0 - /* Configure the SysTick to have interrupt in 1ms time basis*/ - if (HAL_SYSTICK_Config(SystemCoreClock / (1000U / uwTickFreq)) > 0U) - 8000910: 20fa movs r0, #250 ; 0xfa - 8000912: 4b0d ldr r3, [pc, #52] ; (8000948 ) - 8000914: 0080 lsls r0, r0, #2 - 8000916: 7819 ldrb r1, [r3, #0] - 8000918: f7ff fbf6 bl 8000108 <__udivsi3> - 800091c: 4b0b ldr r3, [pc, #44] ; (800094c ) - 800091e: 0001 movs r1, r0 - 8000920: 6818 ldr r0, [r3, #0] - 8000922: f7ff fbf1 bl 8000108 <__udivsi3> - 8000926: f000 f877 bl 8000a18 - 800092a: 0004 movs r4, r0 - { - return HAL_ERROR; - 800092c: 2001 movs r0, #1 - if (HAL_SYSTICK_Config(SystemCoreClock / (1000U / uwTickFreq)) > 0U) - 800092e: 2c00 cmp r4, #0 - 8000930: d109 bne.n 8000946 - } - - /* Configure the SysTick IRQ priority */ - if (TickPriority < (1UL << __NVIC_PRIO_BITS)) - 8000932: 2d03 cmp r5, #3 - 8000934: d807 bhi.n 8000946 - { - HAL_NVIC_SetPriority(SysTick_IRQn, TickPriority, 0U); - 8000936: 3802 subs r0, #2 - 8000938: 0022 movs r2, r4 - 800093a: 0029 movs r1, r5 - 800093c: f000 f842 bl 80009c4 - uwTickPrio = TickPriority; - 8000940: 0020 movs r0, r4 - 8000942: 4b03 ldr r3, [pc, #12] ; (8000950 ) - 8000944: 601d str r5, [r3, #0] - return HAL_ERROR; - } - - /* Return function status */ - return HAL_OK; -} - 8000946: bd70 pop {r4, r5, r6, pc} - 8000948: 20000004 .word 0x20000004 - 800094c: 20000000 .word 0x20000000 - 8000950: 20000008 .word 0x20000008 - -08000954 : - __HAL_FLASH_PREREAD_BUFFER_ENABLE(); - 8000954: 2340 movs r3, #64 ; 0x40 - 8000956: 4a08 ldr r2, [pc, #32] ; (8000978 ) -{ - 8000958: b510 push {r4, lr} - __HAL_FLASH_PREREAD_BUFFER_ENABLE(); - 800095a: 6811 ldr r1, [r2, #0] - if (HAL_InitTick(TICK_INT_PRIORITY) != HAL_OK) - 800095c: 2000 movs r0, #0 - __HAL_FLASH_PREREAD_BUFFER_ENABLE(); - 800095e: 430b orrs r3, r1 - 8000960: 6013 str r3, [r2, #0] - if (HAL_InitTick(TICK_INT_PRIORITY) != HAL_OK) - 8000962: f7ff ffd3 bl 800090c - 8000966: 1e04 subs r4, r0, #0 - 8000968: d103 bne.n 8000972 - HAL_MspInit(); - 800096a: f7ff ff75 bl 8000858 -} - 800096e: 0020 movs r0, r4 - 8000970: bd10 pop {r4, pc} - status = HAL_ERROR; - 8000972: 2401 movs r4, #1 - 8000974: e7fb b.n 800096e - 8000976: 46c0 nop ; (mov r8, r8) - 8000978: 40022000 .word 0x40022000 - -0800097c : - * implementations in user file. - * @retval None - */ -__weak void HAL_IncTick(void) -{ - uwTick += uwTickFreq; - 800097c: 4a03 ldr r2, [pc, #12] ; (800098c ) - 800097e: 4b04 ldr r3, [pc, #16] ; (8000990 ) - 8000980: 6811 ldr r1, [r2, #0] - 8000982: 781b ldrb r3, [r3, #0] - 8000984: 185b adds r3, r3, r1 - 8000986: 6013 str r3, [r2, #0] -} - 8000988: 4770 bx lr - 800098a: 46c0 nop ; (mov r8, r8) - 800098c: 20000028 .word 0x20000028 - 8000990: 20000004 .word 0x20000004 - -08000994 : - * implementations in user file. - * @retval tick value - */ -__weak uint32_t HAL_GetTick(void) -{ - return uwTick; - 8000994: 4b01 ldr r3, [pc, #4] ; (800099c ) - 8000996: 6818 ldr r0, [r3, #0] -} - 8000998: 4770 bx lr - 800099a: 46c0 nop ; (mov r8, r8) - 800099c: 20000028 .word 0x20000028 - -080009a0 : - * implementations in user file. - * @param Delay specifies the delay time length, in milliseconds. - * @retval None - */ -__weak void HAL_Delay(uint32_t Delay) -{ - 80009a0: b570 push {r4, r5, r6, lr} - 80009a2: 0004 movs r4, r0 - uint32_t tickstart = HAL_GetTick(); - 80009a4: f7ff fff6 bl 8000994 - 80009a8: 0005 movs r5, r0 - uint32_t wait = Delay; - - /* Add a freq to guarantee minimum wait */ - if (wait < HAL_MAX_DELAY) - 80009aa: 1c63 adds r3, r4, #1 - 80009ac: d002 beq.n 80009b4 - { - wait += (uint32_t)(uwTickFreq); - 80009ae: 4b04 ldr r3, [pc, #16] ; (80009c0 ) - 80009b0: 781b ldrb r3, [r3, #0] - 80009b2: 18e4 adds r4, r4, r3 - } - - while((HAL_GetTick() - tickstart) < wait) - 80009b4: f7ff ffee bl 8000994 - 80009b8: 1b40 subs r0, r0, r5 - 80009ba: 42a0 cmp r0, r4 - 80009bc: d3fa bcc.n 80009b4 - { - } -} - 80009be: bd70 pop {r4, r5, r6, pc} - 80009c0: 20000004 .word 0x20000004 - -080009c4 : - * with stm32l0xx devices, this parameter is a dummy value and it is ignored, because - * no subpriority supported in Cortex M0+ based products. - * @retval None - */ -void HAL_NVIC_SetPriority(IRQn_Type IRQn, uint32_t PreemptPriority, uint32_t SubPriority) -{ - 80009c4: b530 push {r4, r5, lr} - 80009c6: 25ff movs r5, #255 ; 0xff - 80009c8: 2403 movs r4, #3 - 80009ca: 002a movs r2, r5 - 80009cc: 4004 ands r4, r0 - 80009ce: 00e4 lsls r4, r4, #3 - 80009d0: 40a2 lsls r2, r4 - 80009d2: 0189 lsls r1, r1, #6 - 80009d4: 4029 ands r1, r5 - 80009d6: 43d2 mvns r2, r2 - 80009d8: 40a1 lsls r1, r4 - 80009da: b2c3 uxtb r3, r0 - if ((int32_t)(IRQn) >= 0) - 80009dc: 2800 cmp r0, #0 - 80009de: db0a blt.n 80009f6 - NVIC->IP[_IP_IDX(IRQn)] = ((uint32_t)(NVIC->IP[_IP_IDX(IRQn)] & ~(0xFFUL << _BIT_SHIFT(IRQn))) | - 80009e0: 24c0 movs r4, #192 ; 0xc0 - 80009e2: 4b0b ldr r3, [pc, #44] ; (8000a10 ) - 80009e4: 0880 lsrs r0, r0, #2 - 80009e6: 0080 lsls r0, r0, #2 - 80009e8: 18c0 adds r0, r0, r3 - 80009ea: 00a4 lsls r4, r4, #2 - 80009ec: 5903 ldr r3, [r0, r4] - 80009ee: 401a ands r2, r3 - 80009f0: 4311 orrs r1, r2 - 80009f2: 5101 str r1, [r0, r4] - /* Check the parameters */ - assert_param(IS_NVIC_PREEMPTION_PRIORITY(PreemptPriority)); - NVIC_SetPriority(IRQn,PreemptPriority); -} - 80009f4: bd30 pop {r4, r5, pc} - (((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL) << _BIT_SHIFT(IRQn))); - } - else - { - SCB->SHP[_SHP_IDX(IRQn)] = ((uint32_t)(SCB->SHP[_SHP_IDX(IRQn)] & ~(0xFFUL << _BIT_SHIFT(IRQn))) | - 80009f6: 200f movs r0, #15 - 80009f8: 4003 ands r3, r0 - 80009fa: 3b08 subs r3, #8 - 80009fc: 4805 ldr r0, [pc, #20] ; (8000a14 ) - 80009fe: 089b lsrs r3, r3, #2 - 8000a00: 009b lsls r3, r3, #2 - 8000a02: 181b adds r3, r3, r0 - 8000a04: 69d8 ldr r0, [r3, #28] - 8000a06: 4002 ands r2, r0 - 8000a08: 4311 orrs r1, r2 - 8000a0a: 61d9 str r1, [r3, #28] - 8000a0c: e7f2 b.n 80009f4 - 8000a0e: 46c0 nop ; (mov r8, r8) - 8000a10: e000e100 .word 0xe000e100 - 8000a14: e000ed00 .word 0xe000ed00 - -08000a18 : - function SysTick_Config is not included. In this case, the file device.h - must contain a vendor-specific implementation of this function. - */ -__STATIC_INLINE uint32_t SysTick_Config(uint32_t ticks) -{ - if ((ticks - 1UL) > SysTick_LOAD_RELOAD_Msk) - 8000a18: 2280 movs r2, #128 ; 0x80 - 8000a1a: 1e43 subs r3, r0, #1 - 8000a1c: 0452 lsls r2, r2, #17 - { - return (1UL); /* Reload value impossible */ - 8000a1e: 2001 movs r0, #1 - if ((ticks - 1UL) > SysTick_LOAD_RELOAD_Msk) - 8000a20: 4293 cmp r3, r2 - 8000a22: d20d bcs.n 8000a40 - SCB->SHP[_SHP_IDX(IRQn)] = ((uint32_t)(SCB->SHP[_SHP_IDX(IRQn)] & ~(0xFFUL << _BIT_SHIFT(IRQn))) | - 8000a24: 21c0 movs r1, #192 ; 0xc0 - } - - SysTick->LOAD = (uint32_t)(ticks - 1UL); /* set reload register */ - 8000a26: 4a07 ldr r2, [pc, #28] ; (8000a44 ) - SCB->SHP[_SHP_IDX(IRQn)] = ((uint32_t)(SCB->SHP[_SHP_IDX(IRQn)] & ~(0xFFUL << _BIT_SHIFT(IRQn))) | - 8000a28: 4807 ldr r0, [pc, #28] ; (8000a48 ) - SysTick->LOAD = (uint32_t)(ticks - 1UL); /* set reload register */ - 8000a2a: 6053 str r3, [r2, #4] - SCB->SHP[_SHP_IDX(IRQn)] = ((uint32_t)(SCB->SHP[_SHP_IDX(IRQn)] & ~(0xFFUL << _BIT_SHIFT(IRQn))) | - 8000a2c: 6a03 ldr r3, [r0, #32] - 8000a2e: 0609 lsls r1, r1, #24 - 8000a30: 021b lsls r3, r3, #8 - 8000a32: 0a1b lsrs r3, r3, #8 - 8000a34: 430b orrs r3, r1 - 8000a36: 6203 str r3, [r0, #32] - NVIC_SetPriority (SysTick_IRQn, (1UL << __NVIC_PRIO_BITS) - 1UL); /* set Priority for Systick Interrupt */ - SysTick->VAL = 0UL; /* Load the SysTick Counter Value */ - 8000a38: 2000 movs r0, #0 - SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk | - 8000a3a: 2307 movs r3, #7 - SysTick->VAL = 0UL; /* Load the SysTick Counter Value */ - 8000a3c: 6090 str r0, [r2, #8] - SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk | - 8000a3e: 6013 str r3, [r2, #0] - * - 1 Function failed. - */ -uint32_t HAL_SYSTICK_Config(uint32_t TicksNumb) -{ - return SysTick_Config(TicksNumb); -} - 8000a40: 4770 bx lr - 8000a42: 46c0 nop ; (mov r8, r8) - 8000a44: e000e010 .word 0xe000e010 - 8000a48: e000ed00 .word 0xe000ed00 - -08000a4c : - uint32_t sysclockfreq; - - tmpreg = RCC->CFGR; - - /* Get SYSCLK source -------------------------------------------------------*/ - switch (tmpreg & RCC_CFGR_SWS) - 8000a4c: 220c movs r2, #12 - tmpreg = RCC->CFGR; - 8000a4e: 4b1d ldr r3, [pc, #116] ; (8000ac4 ) -{ - 8000a50: b570 push {r4, r5, r6, lr} - tmpreg = RCC->CFGR; - 8000a52: 68dc ldr r4, [r3, #12] - switch (tmpreg & RCC_CFGR_SWS) - 8000a54: 4022 ands r2, r4 - 8000a56: 2a08 cmp r2, #8 - 8000a58: d031 beq.n 8000abe - 8000a5a: 2a0c cmp r2, #12 - 8000a5c: d009 beq.n 8000a72 - 8000a5e: 2a04 cmp r2, #4 - 8000a60: d125 bne.n 8000aae - { - case RCC_SYSCLKSOURCE_STATUS_HSI: /* HSI used as system clock source */ - { - if ((RCC->CR & RCC_CR_HSIDIVF) != 0U) - 8000a62: 6818 ldr r0, [r3, #0] - { - sysclockfreq = (HSI_VALUE >> 2); - } - else - { - sysclockfreq = HSI_VALUE; - 8000a64: 4b18 ldr r3, [pc, #96] ; (8000ac8 ) - if ((RCC->CR & RCC_CR_HSIDIVF) != 0U) - 8000a66: 06c0 lsls r0, r0, #27 - sysclockfreq = HSI_VALUE; - 8000a68: 17c0 asrs r0, r0, #31 - 8000a6a: 4018 ands r0, r3 - 8000a6c: 4b17 ldr r3, [pc, #92] ; (8000acc ) - 8000a6e: 18c0 adds r0, r0, r3 - sysclockfreq = (32768U * (1UL << (msiclkrange + 1U))); - break; - } - } - return sysclockfreq; -} - 8000a70: bd70 pop {r4, r5, r6, pc} - pllm = PLLMulTable[(uint32_t)(tmpreg & RCC_CFGR_PLLMUL) >> RCC_CFGR_PLLMUL_Pos]; - 8000a72: 02a2 lsls r2, r4, #10 - 8000a74: 4816 ldr r0, [pc, #88] ; (8000ad0 ) - 8000a76: 0f12 lsrs r2, r2, #28 - 8000a78: 5c80 ldrb r0, [r0, r2] - if (__HAL_RCC_GET_PLL_OSCSOURCE() != RCC_PLLSOURCE_HSI) - 8000a7a: 2280 movs r2, #128 ; 0x80 - plld = ((uint32_t)(tmpreg & RCC_CFGR_PLLDIV) >> RCC_CFGR_PLLDIV_Pos) + 1U; - 8000a7c: 0224 lsls r4, r4, #8 - if (__HAL_RCC_GET_PLL_OSCSOURCE() != RCC_PLLSOURCE_HSI) - 8000a7e: 68d9 ldr r1, [r3, #12] - plld = ((uint32_t)(tmpreg & RCC_CFGR_PLLDIV) >> RCC_CFGR_PLLDIV_Pos) + 1U; - 8000a80: 0fa4 lsrs r4, r4, #30 - if (__HAL_RCC_GET_PLL_OSCSOURCE() != RCC_PLLSOURCE_HSI) - 8000a82: 0252 lsls r2, r2, #9 - plld = ((uint32_t)(tmpreg & RCC_CFGR_PLLDIV) >> RCC_CFGR_PLLDIV_Pos) + 1U; - 8000a84: 3401 adds r4, #1 - if (__HAL_RCC_GET_PLL_OSCSOURCE() != RCC_PLLSOURCE_HSI) - 8000a86: 4211 tst r1, r2 - 8000a88: d009 beq.n 8000a9e - pllvco = (uint32_t)(((uint64_t)HSE_VALUE * (uint64_t)pllm) / (uint64_t)plld); - 8000a8a: 4a12 ldr r2, [pc, #72] ; (8000ad4 ) - 8000a8c: 2300 movs r3, #0 - 8000a8e: 2100 movs r1, #0 - 8000a90: f7ff fbe6 bl 8000260 <__aeabi_lmul> - 8000a94: 0022 movs r2, r4 - 8000a96: 2300 movs r3, #0 - 8000a98: f7ff fbc2 bl 8000220 <__aeabi_uldivmod> - 8000a9c: e7e8 b.n 8000a70 - if ((RCC->CR & RCC_CR_HSIDIVF) != 0U) - 8000a9e: 681a ldr r2, [r3, #0] - 8000aa0: 2310 movs r3, #16 - 8000aa2: 421a tst r2, r3 - 8000aa4: d001 beq.n 8000aaa - pllvco = (uint32_t)((((uint64_t)(HSI_VALUE >> 2)) * (uint64_t)pllm) / (uint64_t)plld); - 8000aa6: 4a0c ldr r2, [pc, #48] ; (8000ad8 ) - 8000aa8: e7f0 b.n 8000a8c - pllvco = (uint32_t)(((uint64_t)HSI_VALUE * (uint64_t)pllm) / (uint64_t)plld); - 8000aaa: 4a08 ldr r2, [pc, #32] ; (8000acc ) - 8000aac: e7ee b.n 8000a8c - sysclockfreq = (32768U * (1UL << (msiclkrange + 1U))); - 8000aae: 2080 movs r0, #128 ; 0x80 - msiclkrange = (RCC->ICSCR & RCC_ICSCR_MSIRANGE ) >> RCC_ICSCR_MSIRANGE_Pos; - 8000ab0: 685b ldr r3, [r3, #4] - sysclockfreq = (32768U * (1UL << (msiclkrange + 1U))); - 8000ab2: 0200 lsls r0, r0, #8 - msiclkrange = (RCC->ICSCR & RCC_ICSCR_MSIRANGE ) >> RCC_ICSCR_MSIRANGE_Pos; - 8000ab4: 041b lsls r3, r3, #16 - 8000ab6: 0f5b lsrs r3, r3, #29 - sysclockfreq = (32768U * (1UL << (msiclkrange + 1U))); - 8000ab8: 3301 adds r3, #1 - 8000aba: 4098 lsls r0, r3 - return sysclockfreq; - 8000abc: e7d8 b.n 8000a70 - switch (tmpreg & RCC_CFGR_SWS) - 8000abe: 4805 ldr r0, [pc, #20] ; (8000ad4 ) - 8000ac0: e7d6 b.n 8000a70 - 8000ac2: 46c0 nop ; (mov r8, r8) - 8000ac4: 40021000 .word 0x40021000 - 8000ac8: ff48e500 .word 0xff48e500 - 8000acc: 00f42400 .word 0x00f42400 - 8000ad0: 08001618 .word 0x08001618 - 8000ad4: 007a1200 .word 0x007a1200 - 8000ad8: 003d0900 .word 0x003d0900 - -08000adc : -{ - 8000adc: b5f0 push {r4, r5, r6, r7, lr} - 8000ade: 0005 movs r5, r0 - 8000ae0: b087 sub sp, #28 - if(RCC_OscInitStruct == NULL) - 8000ae2: 2800 cmp r0, #0 - 8000ae4: d055 beq.n 8000b92 - sysclk_source = __HAL_RCC_GET_SYSCLK_SOURCE(); - 8000ae6: 230c movs r3, #12 - 8000ae8: 4cb6 ldr r4, [pc, #728] ; (8000dc4 ) - if(((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSE) == RCC_OSCILLATORTYPE_HSE) - 8000aea: 6802 ldr r2, [r0, #0] - sysclk_source = __HAL_RCC_GET_SYSCLK_SOURCE(); - 8000aec: 68e6 ldr r6, [r4, #12] - pll_config = __HAL_RCC_GET_PLL_OSCSOURCE(); - 8000aee: 68e7 ldr r7, [r4, #12] - sysclk_source = __HAL_RCC_GET_SYSCLK_SOURCE(); - 8000af0: 401e ands r6, r3 - pll_config = __HAL_RCC_GET_PLL_OSCSOURCE(); - 8000af2: 2380 movs r3, #128 ; 0x80 - 8000af4: 025b lsls r3, r3, #9 - 8000af6: 401f ands r7, r3 - if(((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSE) == RCC_OSCILLATORTYPE_HSE) - 8000af8: 07d2 lsls r2, r2, #31 - 8000afa: d43e bmi.n 8000b7a - if(((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSI) == RCC_OSCILLATORTYPE_HSI) - 8000afc: 682b ldr r3, [r5, #0] - 8000afe: 079b lsls r3, r3, #30 - 8000b00: d500 bpl.n 8000b04 - 8000b02: e087 b.n 8000c14 - if(((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_MSI) == RCC_OSCILLATORTYPE_MSI) - 8000b04: 682b ldr r3, [r5, #0] - 8000b06: 06db lsls r3, r3, #27 - 8000b08: d529 bpl.n 8000b5e - if(sysclk_source == RCC_CFGR_SWS_MSI) - 8000b0a: 2e00 cmp r6, #0 - 8000b0c: d000 beq.n 8000b10 - 8000b0e: e0e0 b.n 8000cd2 - if((__HAL_RCC_GET_FLAG(RCC_FLAG_MSIRDY) != 0U) && (RCC_OscInitStruct->MSIState == RCC_MSI_OFF)) - 8000b10: 6823 ldr r3, [r4, #0] - 8000b12: 059b lsls r3, r3, #22 - 8000b14: d502 bpl.n 8000b1c - 8000b16: 69ab ldr r3, [r5, #24] - 8000b18: 2b00 cmp r3, #0 - 8000b1a: d03a beq.n 8000b92 - __HAL_RCC_MSI_RANGE_CONFIG(RCC_OscInitStruct->MSIClockRange); - 8000b1c: 6862 ldr r2, [r4, #4] - 8000b1e: 49aa ldr r1, [pc, #680] ; (8000dc8 ) - 8000b20: 6a2b ldr r3, [r5, #32] - 8000b22: 400a ands r2, r1 - 8000b24: 431a orrs r2, r3 - 8000b26: 6062 str r2, [r4, #4] - __HAL_RCC_MSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->MSICalibrationValue); - 8000b28: 6861 ldr r1, [r4, #4] - 8000b2a: 69ea ldr r2, [r5, #28] - 8000b2c: 0209 lsls r1, r1, #8 - 8000b2e: 0a09 lsrs r1, r1, #8 - 8000b30: 0612 lsls r2, r2, #24 - 8000b32: 430a orrs r2, r1 - 8000b34: 6062 str r2, [r4, #4] - SystemCoreClock = (32768U * (1UL << ((RCC_OscInitStruct->MSIClockRange >> RCC_ICSCR_MSIRANGE_Pos) + 1U))) - 8000b36: 2280 movs r2, #128 ; 0x80 - 8000b38: 0b5b lsrs r3, r3, #13 - 8000b3a: 3301 adds r3, #1 - 8000b3c: 0212 lsls r2, r2, #8 - 8000b3e: 409a lsls r2, r3 - 8000b40: 0013 movs r3, r2 - >> AHBPrescTable[((RCC->CFGR & RCC_CFGR_HPRE) >> RCC_CFGR_HPRE_Pos)]; - 8000b42: 68e1 ldr r1, [r4, #12] - 8000b44: 060a lsls r2, r1, #24 - 8000b46: 49a1 ldr r1, [pc, #644] ; (8000dcc ) - 8000b48: 0f12 lsrs r2, r2, #28 - 8000b4a: 5c8a ldrb r2, [r1, r2] - 8000b4c: 40d3 lsrs r3, r2 - SystemCoreClock = (32768U * (1UL << ((RCC_OscInitStruct->MSIClockRange >> RCC_ICSCR_MSIRANGE_Pos) + 1U))) - 8000b4e: 4aa0 ldr r2, [pc, #640] ; (8000dd0 ) - 8000b50: 6013 str r3, [r2, #0] - status = HAL_InitTick (uwTickPrio); - 8000b52: 4ba0 ldr r3, [pc, #640] ; (8000dd4 ) - 8000b54: 6818 ldr r0, [r3, #0] - 8000b56: f7ff fed9 bl 800090c - if(status != HAL_OK) - 8000b5a: 2800 cmp r0, #0 - 8000b5c: d130 bne.n 8000bc0 - if(((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSI) == RCC_OSCILLATORTYPE_LSI) - 8000b5e: 682b ldr r3, [r5, #0] - 8000b60: 071b lsls r3, r3, #28 - 8000b62: d500 bpl.n 8000b66 - 8000b64: e0ec b.n 8000d40 - if(((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSE) == RCC_OSCILLATORTYPE_LSE) - 8000b66: 682b ldr r3, [r5, #0] - 8000b68: 075b lsls r3, r3, #29 - 8000b6a: d500 bpl.n 8000b6e - 8000b6c: e10e b.n 8000d8c - if ((RCC_OscInitStruct->PLL.PLLState) != RCC_PLL_NONE) - 8000b6e: 6a6b ldr r3, [r5, #36] ; 0x24 - 8000b70: 2b00 cmp r3, #0 - 8000b72: d000 beq.n 8000b76 - 8000b74: e195 b.n 8000ea2 - return HAL_OK; - 8000b76: 2000 movs r0, #0 - 8000b78: e022 b.n 8000bc0 - if((sysclk_source == RCC_SYSCLKSOURCE_STATUS_HSE) - 8000b7a: 2e08 cmp r6, #8 - 8000b7c: d003 beq.n 8000b86 - || ((sysclk_source == RCC_SYSCLKSOURCE_STATUS_PLLCLK) && (pll_config == RCC_PLLSOURCE_HSE))) - 8000b7e: 2e0c cmp r6, #12 - 8000b80: d109 bne.n 8000b96 - 8000b82: 2f00 cmp r7, #0 - 8000b84: d007 beq.n 8000b96 - if((__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != 0U) && (RCC_OscInitStruct->HSEState == RCC_HSE_OFF)) - 8000b86: 6823 ldr r3, [r4, #0] - 8000b88: 039b lsls r3, r3, #14 - 8000b8a: d5b7 bpl.n 8000afc - 8000b8c: 686b ldr r3, [r5, #4] - 8000b8e: 2b00 cmp r3, #0 - 8000b90: d1b4 bne.n 8000afc - return HAL_ERROR; - 8000b92: 2001 movs r0, #1 - 8000b94: e014 b.n 8000bc0 - __HAL_RCC_HSE_CONFIG(RCC_OscInitStruct->HSEState); - 8000b96: 686a ldr r2, [r5, #4] - 8000b98: 429a cmp r2, r3 - 8000b9a: d113 bne.n 8000bc4 - 8000b9c: 6822 ldr r2, [r4, #0] - 8000b9e: 4313 orrs r3, r2 - 8000ba0: 6023 str r3, [r4, #0] - tickstart = HAL_GetTick(); - 8000ba2: f7ff fef7 bl 8000994 - 8000ba6: 9001 str r0, [sp, #4] - while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == 0U) - 8000ba8: 2280 movs r2, #128 ; 0x80 - 8000baa: 6823 ldr r3, [r4, #0] - 8000bac: 0292 lsls r2, r2, #10 - 8000bae: 4213 tst r3, r2 - 8000bb0: d1a4 bne.n 8000afc - if((HAL_GetTick() - tickstart ) > HSE_TIMEOUT_VALUE) - 8000bb2: f7ff feef bl 8000994 - 8000bb6: 9b01 ldr r3, [sp, #4] - 8000bb8: 1ac0 subs r0, r0, r3 - 8000bba: 2864 cmp r0, #100 ; 0x64 - 8000bbc: d9f4 bls.n 8000ba8 - return HAL_TIMEOUT; - 8000bbe: 2003 movs r0, #3 -} - 8000bc0: b007 add sp, #28 - 8000bc2: bdf0 pop {r4, r5, r6, r7, pc} - __HAL_RCC_HSE_CONFIG(RCC_OscInitStruct->HSEState); - 8000bc4: 21a0 movs r1, #160 ; 0xa0 - 8000bc6: 02c9 lsls r1, r1, #11 - 8000bc8: 428a cmp r2, r1 - 8000bca: d105 bne.n 8000bd8 - 8000bcc: 2280 movs r2, #128 ; 0x80 - 8000bce: 6821 ldr r1, [r4, #0] - 8000bd0: 02d2 lsls r2, r2, #11 - 8000bd2: 430a orrs r2, r1 - 8000bd4: 6022 str r2, [r4, #0] - 8000bd6: e7e1 b.n 8000b9c - 8000bd8: 6821 ldr r1, [r4, #0] - 8000bda: 487f ldr r0, [pc, #508] ; (8000dd8 ) - 8000bdc: 4001 ands r1, r0 - 8000bde: 6021 str r1, [r4, #0] - 8000be0: 6821 ldr r1, [r4, #0] - 8000be2: 400b ands r3, r1 - 8000be4: 9305 str r3, [sp, #20] - 8000be6: 9b05 ldr r3, [sp, #20] - 8000be8: 497c ldr r1, [pc, #496] ; (8000ddc ) - 8000bea: 6823 ldr r3, [r4, #0] - 8000bec: 400b ands r3, r1 - 8000bee: 6023 str r3, [r4, #0] - if(RCC_OscInitStruct->HSEState != RCC_HSE_OFF) - 8000bf0: 2a00 cmp r2, #0 - 8000bf2: d1d6 bne.n 8000ba2 - tickstart = HAL_GetTick(); - 8000bf4: f7ff fece bl 8000994 - 8000bf8: 9001 str r0, [sp, #4] - while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != 0U) - 8000bfa: 2280 movs r2, #128 ; 0x80 - 8000bfc: 6823 ldr r3, [r4, #0] - 8000bfe: 0292 lsls r2, r2, #10 - 8000c00: 4213 tst r3, r2 - 8000c02: d100 bne.n 8000c06 - 8000c04: e77a b.n 8000afc - if((HAL_GetTick() - tickstart ) > HSE_TIMEOUT_VALUE) - 8000c06: f7ff fec5 bl 8000994 - 8000c0a: 9b01 ldr r3, [sp, #4] - 8000c0c: 1ac0 subs r0, r0, r3 - 8000c0e: 2864 cmp r0, #100 ; 0x64 - 8000c10: d9f3 bls.n 8000bfa - 8000c12: e7d4 b.n 8000bbe - if((hsi_state & RCC_HSI_OUTEN) != 0U) - 8000c14: 2220 movs r2, #32 - hsi_state = RCC_OscInitStruct->HSIState; - 8000c16: 68eb ldr r3, [r5, #12] - if((hsi_state & RCC_HSI_OUTEN) != 0U) - 8000c18: 4213 tst r3, r2 - 8000c1a: d003 beq.n 8000c24 - SET_BIT(RCC->CR, RCC_CR_HSIOUTEN); - 8000c1c: 6821 ldr r1, [r4, #0] - hsi_state &= ~RCC_CR_HSIOUTEN; - 8000c1e: 4393 bics r3, r2 - SET_BIT(RCC->CR, RCC_CR_HSIOUTEN); - 8000c20: 4311 orrs r1, r2 - 8000c22: 6021 str r1, [r4, #0] - if((sysclk_source == RCC_SYSCLKSOURCE_STATUS_HSI) - 8000c24: 2e04 cmp r6, #4 - 8000c26: d003 beq.n 8000c30 - || ((sysclk_source == RCC_SYSCLKSOURCE_STATUS_PLLCLK) && (pll_config == RCC_PLLSOURCE_HSI))) - 8000c28: 2e0c cmp r6, #12 - 8000c2a: d124 bne.n 8000c76 - 8000c2c: 2f00 cmp r7, #0 - 8000c2e: d122 bne.n 8000c76 - if((__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != 0U) && (hsi_state == RCC_HSI_OFF)) - 8000c30: 6822 ldr r2, [r4, #0] - 8000c32: 0752 lsls r2, r2, #29 - 8000c34: d501 bpl.n 8000c3a - 8000c36: 2b00 cmp r3, #0 - 8000c38: d0ab beq.n 8000b92 - __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->HSICalibrationValue); - 8000c3a: 6861 ldr r1, [r4, #4] - 8000c3c: 692a ldr r2, [r5, #16] - 8000c3e: 4868 ldr r0, [pc, #416] ; (8000de0 ) - 8000c40: 0212 lsls r2, r2, #8 - 8000c42: 4001 ands r1, r0 - 8000c44: 430a orrs r2, r1 - __HAL_RCC_HSI_CONFIG(hsi_state); - 8000c46: 2109 movs r1, #9 - __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->HSICalibrationValue); - 8000c48: 6062 str r2, [r4, #4] - __HAL_RCC_HSI_CONFIG(hsi_state); - 8000c4a: 6822 ldr r2, [r4, #0] - 8000c4c: 438a bics r2, r1 - 8000c4e: 4313 orrs r3, r2 - 8000c50: 6023 str r3, [r4, #0] - SystemCoreClock = HAL_RCC_GetSysClockFreq() >> AHBPrescTable[(RCC->CFGR & RCC_CFGR_HPRE)>> RCC_CFGR_HPRE_Pos]; - 8000c52: f7ff fefb bl 8000a4c - 8000c56: 68e3 ldr r3, [r4, #12] - 8000c58: 4a5c ldr r2, [pc, #368] ; (8000dcc ) - 8000c5a: 061b lsls r3, r3, #24 - 8000c5c: 0f1b lsrs r3, r3, #28 - 8000c5e: 5cd3 ldrb r3, [r2, r3] - 8000c60: 40d8 lsrs r0, r3 - 8000c62: 4b5b ldr r3, [pc, #364] ; (8000dd0 ) - 8000c64: 6018 str r0, [r3, #0] - status = HAL_InitTick (uwTickPrio); - 8000c66: 4b5b ldr r3, [pc, #364] ; (8000dd4 ) - 8000c68: 6818 ldr r0, [r3, #0] - 8000c6a: f7ff fe4f bl 800090c - if(status != HAL_OK) - 8000c6e: 2800 cmp r0, #0 - 8000c70: d100 bne.n 8000c74 - 8000c72: e747 b.n 8000b04 - 8000c74: e7a4 b.n 8000bc0 - if(hsi_state != RCC_HSI_OFF) - 8000c76: 2b00 cmp r3, #0 - 8000c78: d019 beq.n 8000cae - __HAL_RCC_HSI_CONFIG(hsi_state); - 8000c7a: 2109 movs r1, #9 - 8000c7c: 6822 ldr r2, [r4, #0] - 8000c7e: 438a bics r2, r1 - 8000c80: 4313 orrs r3, r2 - 8000c82: 6023 str r3, [r4, #0] - tickstart = HAL_GetTick(); - 8000c84: f7ff fe86 bl 8000994 - 8000c88: 0007 movs r7, r0 - while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == 0U) - 8000c8a: 2204 movs r2, #4 - 8000c8c: 6823 ldr r3, [r4, #0] - 8000c8e: 4213 tst r3, r2 - 8000c90: d007 beq.n 8000ca2 - __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->HSICalibrationValue); - 8000c92: 6862 ldr r2, [r4, #4] - 8000c94: 692b ldr r3, [r5, #16] - 8000c96: 4952 ldr r1, [pc, #328] ; (8000de0 ) - 8000c98: 021b lsls r3, r3, #8 - 8000c9a: 400a ands r2, r1 - 8000c9c: 4313 orrs r3, r2 - 8000c9e: 6063 str r3, [r4, #4] - 8000ca0: e730 b.n 8000b04 - if((HAL_GetTick() - tickstart ) > HSI_TIMEOUT_VALUE) - 8000ca2: f7ff fe77 bl 8000994 - 8000ca6: 1bc0 subs r0, r0, r7 - 8000ca8: 2802 cmp r0, #2 - 8000caa: d9ee bls.n 8000c8a - 8000cac: e787 b.n 8000bbe - __HAL_RCC_HSI_DISABLE(); - 8000cae: 2201 movs r2, #1 - 8000cb0: 6823 ldr r3, [r4, #0] - 8000cb2: 4393 bics r3, r2 - 8000cb4: 6023 str r3, [r4, #0] - tickstart = HAL_GetTick(); - 8000cb6: f7ff fe6d bl 8000994 - 8000cba: 0007 movs r7, r0 - while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != 0U) - 8000cbc: 2204 movs r2, #4 - 8000cbe: 6823 ldr r3, [r4, #0] - 8000cc0: 4213 tst r3, r2 - 8000cc2: d100 bne.n 8000cc6 - 8000cc4: e71e b.n 8000b04 - if((HAL_GetTick() - tickstart ) > HSI_TIMEOUT_VALUE) - 8000cc6: f7ff fe65 bl 8000994 - 8000cca: 1bc0 subs r0, r0, r7 - 8000ccc: 2802 cmp r0, #2 - 8000cce: d9f5 bls.n 8000cbc - 8000cd0: e775 b.n 8000bbe - if(RCC_OscInitStruct->MSIState != RCC_MSI_OFF) - 8000cd2: 69ab ldr r3, [r5, #24] - 8000cd4: 2b00 cmp r3, #0 - 8000cd6: d020 beq.n 8000d1a - __HAL_RCC_MSI_ENABLE(); - 8000cd8: 2380 movs r3, #128 ; 0x80 - 8000cda: 6822 ldr r2, [r4, #0] - 8000cdc: 005b lsls r3, r3, #1 - 8000cde: 4313 orrs r3, r2 - 8000ce0: 6023 str r3, [r4, #0] - tickstart = HAL_GetTick(); - 8000ce2: f7ff fe57 bl 8000994 - 8000ce6: 0007 movs r7, r0 - while(__HAL_RCC_GET_FLAG(RCC_FLAG_MSIRDY) == 0U) - 8000ce8: 2280 movs r2, #128 ; 0x80 - 8000cea: 6823 ldr r3, [r4, #0] - 8000cec: 0092 lsls r2, r2, #2 - 8000cee: 4213 tst r3, r2 - 8000cf0: d00d beq.n 8000d0e - __HAL_RCC_MSI_RANGE_CONFIG(RCC_OscInitStruct->MSIClockRange); - 8000cf2: 6863 ldr r3, [r4, #4] - 8000cf4: 4a34 ldr r2, [pc, #208] ; (8000dc8 ) - 8000cf6: 4013 ands r3, r2 - 8000cf8: 6a2a ldr r2, [r5, #32] - 8000cfa: 4313 orrs r3, r2 - 8000cfc: 6063 str r3, [r4, #4] - __HAL_RCC_MSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->MSICalibrationValue); - 8000cfe: 6862 ldr r2, [r4, #4] - 8000d00: 69eb ldr r3, [r5, #28] - 8000d02: 0212 lsls r2, r2, #8 - 8000d04: 061b lsls r3, r3, #24 - 8000d06: 0a12 lsrs r2, r2, #8 - 8000d08: 4313 orrs r3, r2 - 8000d0a: 6063 str r3, [r4, #4] - 8000d0c: e727 b.n 8000b5e - if((HAL_GetTick() - tickstart) > MSI_TIMEOUT_VALUE) - 8000d0e: f7ff fe41 bl 8000994 - 8000d12: 1bc0 subs r0, r0, r7 - 8000d14: 2802 cmp r0, #2 - 8000d16: d9e7 bls.n 8000ce8 - 8000d18: e751 b.n 8000bbe - __HAL_RCC_MSI_DISABLE(); - 8000d1a: 6823 ldr r3, [r4, #0] - 8000d1c: 4a31 ldr r2, [pc, #196] ; (8000de4 ) - 8000d1e: 4013 ands r3, r2 - 8000d20: 6023 str r3, [r4, #0] - tickstart = HAL_GetTick(); - 8000d22: f7ff fe37 bl 8000994 - 8000d26: 0007 movs r7, r0 - while(__HAL_RCC_GET_FLAG(RCC_FLAG_MSIRDY) != 0U) - 8000d28: 2280 movs r2, #128 ; 0x80 - 8000d2a: 6823 ldr r3, [r4, #0] - 8000d2c: 0092 lsls r2, r2, #2 - 8000d2e: 4213 tst r3, r2 - 8000d30: d100 bne.n 8000d34 - 8000d32: e714 b.n 8000b5e - if((HAL_GetTick() - tickstart) > MSI_TIMEOUT_VALUE) - 8000d34: f7ff fe2e bl 8000994 - 8000d38: 1bc0 subs r0, r0, r7 - 8000d3a: 2802 cmp r0, #2 - 8000d3c: d9f4 bls.n 8000d28 - 8000d3e: e73e b.n 8000bbe - if(RCC_OscInitStruct->LSIState != RCC_LSI_OFF) - 8000d40: 696a ldr r2, [r5, #20] - 8000d42: 2301 movs r3, #1 - 8000d44: 2a00 cmp r2, #0 - 8000d46: d010 beq.n 8000d6a - __HAL_RCC_LSI_ENABLE(); - 8000d48: 6d22 ldr r2, [r4, #80] ; 0x50 - 8000d4a: 4313 orrs r3, r2 - 8000d4c: 6523 str r3, [r4, #80] ; 0x50 - tickstart = HAL_GetTick(); - 8000d4e: f7ff fe21 bl 8000994 - 8000d52: 0007 movs r7, r0 - while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) == 0U) - 8000d54: 2202 movs r2, #2 - 8000d56: 6d23 ldr r3, [r4, #80] ; 0x50 - 8000d58: 4213 tst r3, r2 - 8000d5a: d000 beq.n 8000d5e - 8000d5c: e703 b.n 8000b66 - if((HAL_GetTick() - tickstart ) > LSI_TIMEOUT_VALUE) - 8000d5e: f7ff fe19 bl 8000994 - 8000d62: 1bc0 subs r0, r0, r7 - 8000d64: 2802 cmp r0, #2 - 8000d66: d9f5 bls.n 8000d54 - 8000d68: e729 b.n 8000bbe - __HAL_RCC_LSI_DISABLE(); - 8000d6a: 6d22 ldr r2, [r4, #80] ; 0x50 - 8000d6c: 439a bics r2, r3 - 8000d6e: 6522 str r2, [r4, #80] ; 0x50 - tickstart = HAL_GetTick(); - 8000d70: f7ff fe10 bl 8000994 - 8000d74: 0007 movs r7, r0 - while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) != 0U) - 8000d76: 2202 movs r2, #2 - 8000d78: 6d23 ldr r3, [r4, #80] ; 0x50 - 8000d7a: 4213 tst r3, r2 - 8000d7c: d100 bne.n 8000d80 - 8000d7e: e6f2 b.n 8000b66 - if((HAL_GetTick() - tickstart ) > LSI_TIMEOUT_VALUE) - 8000d80: f7ff fe08 bl 8000994 - 8000d84: 1bc0 subs r0, r0, r7 - 8000d86: 2802 cmp r0, #2 - 8000d88: d9f5 bls.n 8000d76 - 8000d8a: e718 b.n 8000bbe - if(__HAL_RCC_PWR_IS_CLK_DISABLED()) - 8000d8c: 2380 movs r3, #128 ; 0x80 - FlagStatus pwrclkchanged = RESET; - 8000d8e: 2100 movs r1, #0 - if(__HAL_RCC_PWR_IS_CLK_DISABLED()) - 8000d90: 6ba2 ldr r2, [r4, #56] ; 0x38 - 8000d92: 055b lsls r3, r3, #21 - FlagStatus pwrclkchanged = RESET; - 8000d94: 9101 str r1, [sp, #4] - if(__HAL_RCC_PWR_IS_CLK_DISABLED()) - 8000d96: 421a tst r2, r3 - 8000d98: d104 bne.n 8000da4 - __HAL_RCC_PWR_CLK_ENABLE(); - 8000d9a: 6ba2 ldr r2, [r4, #56] ; 0x38 - 8000d9c: 4313 orrs r3, r2 - 8000d9e: 63a3 str r3, [r4, #56] ; 0x38 - pwrclkchanged = SET; - 8000da0: 2301 movs r3, #1 - 8000da2: 9301 str r3, [sp, #4] - if(HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 8000da4: 2280 movs r2, #128 ; 0x80 - 8000da6: 4f10 ldr r7, [pc, #64] ; (8000de8 ) - 8000da8: 0052 lsls r2, r2, #1 - 8000daa: 683b ldr r3, [r7, #0] - 8000dac: 4213 tst r3, r2 - 8000dae: d01d beq.n 8000dec - __HAL_RCC_LSE_CONFIG(RCC_OscInitStruct->LSEState); - 8000db0: 2280 movs r2, #128 ; 0x80 - 8000db2: 68ab ldr r3, [r5, #8] - 8000db4: 0052 lsls r2, r2, #1 - 8000db6: 4293 cmp r3, r2 - 8000db8: d12e bne.n 8000e18 - 8000dba: 6d22 ldr r2, [r4, #80] ; 0x50 - 8000dbc: 4313 orrs r3, r2 - 8000dbe: 6523 str r3, [r4, #80] ; 0x50 - 8000dc0: e04f b.n 8000e62 - 8000dc2: 46c0 nop ; (mov r8, r8) - 8000dc4: 40021000 .word 0x40021000 - 8000dc8: ffff1fff .word 0xffff1fff - 8000dcc: 08001600 .word 0x08001600 - 8000dd0: 20000000 .word 0x20000000 - 8000dd4: 20000008 .word 0x20000008 - 8000dd8: fffeffff .word 0xfffeffff - 8000ddc: fffbffff .word 0xfffbffff - 8000de0: ffffe0ff .word 0xffffe0ff - 8000de4: fffffeff .word 0xfffffeff - 8000de8: 40007000 .word 0x40007000 - SET_BIT(PWR->CR, PWR_CR_DBP); - 8000dec: 2280 movs r2, #128 ; 0x80 - 8000dee: 683b ldr r3, [r7, #0] - 8000df0: 0052 lsls r2, r2, #1 - 8000df2: 4313 orrs r3, r2 - 8000df4: 603b str r3, [r7, #0] - tickstart = HAL_GetTick(); - 8000df6: f7ff fdcd bl 8000994 - while(HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 8000dfa: 2380 movs r3, #128 ; 0x80 - 8000dfc: 005b lsls r3, r3, #1 - tickstart = HAL_GetTick(); - 8000dfe: 9002 str r0, [sp, #8] - while(HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 8000e00: 9303 str r3, [sp, #12] - 8000e02: 683b ldr r3, [r7, #0] - 8000e04: 9a03 ldr r2, [sp, #12] - 8000e06: 4213 tst r3, r2 - 8000e08: d1d2 bne.n 8000db0 - if((HAL_GetTick() - tickstart) > RCC_DBP_TIMEOUT_VALUE) - 8000e0a: f7ff fdc3 bl 8000994 - 8000e0e: 9b02 ldr r3, [sp, #8] - 8000e10: 1ac0 subs r0, r0, r3 - 8000e12: 2864 cmp r0, #100 ; 0x64 - 8000e14: d9f5 bls.n 8000e02 - 8000e16: e6d2 b.n 8000bbe - __HAL_RCC_LSE_CONFIG(RCC_OscInitStruct->LSEState); - 8000e18: 2b00 cmp r3, #0 - 8000e1a: d116 bne.n 8000e4a - 8000e1c: 6d23 ldr r3, [r4, #80] ; 0x50 - 8000e1e: 4a51 ldr r2, [pc, #324] ; (8000f64 ) - 8000e20: 4013 ands r3, r2 - 8000e22: 6523 str r3, [r4, #80] ; 0x50 - 8000e24: 6d23 ldr r3, [r4, #80] ; 0x50 - 8000e26: 4a50 ldr r2, [pc, #320] ; (8000f68 ) - 8000e28: 4013 ands r3, r2 - 8000e2a: 6523 str r3, [r4, #80] ; 0x50 - tickstart = HAL_GetTick(); - 8000e2c: f7ff fdb2 bl 8000994 - 8000e30: 0007 movs r7, r0 - while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) != 0U) - 8000e32: 2280 movs r2, #128 ; 0x80 - 8000e34: 6d23 ldr r3, [r4, #80] ; 0x50 - 8000e36: 0092 lsls r2, r2, #2 - 8000e38: 4213 tst r3, r2 - 8000e3a: d01a beq.n 8000e72 - if((HAL_GetTick() - tickstart ) > RCC_LSE_TIMEOUT_VALUE) - 8000e3c: f7ff fdaa bl 8000994 - 8000e40: 4b4a ldr r3, [pc, #296] ; (8000f6c ) - 8000e42: 1bc0 subs r0, r0, r7 - 8000e44: 4298 cmp r0, r3 - 8000e46: d9f4 bls.n 8000e32 - 8000e48: e6b9 b.n 8000bbe - __HAL_RCC_LSE_CONFIG(RCC_OscInitStruct->LSEState); - 8000e4a: 21a0 movs r1, #160 ; 0xa0 - 8000e4c: 00c9 lsls r1, r1, #3 - 8000e4e: 428b cmp r3, r1 - 8000e50: d118 bne.n 8000e84 - 8000e52: 2380 movs r3, #128 ; 0x80 - 8000e54: 6d21 ldr r1, [r4, #80] ; 0x50 - 8000e56: 00db lsls r3, r3, #3 - 8000e58: 430b orrs r3, r1 - 8000e5a: 6523 str r3, [r4, #80] ; 0x50 - 8000e5c: 6d23 ldr r3, [r4, #80] ; 0x50 - 8000e5e: 431a orrs r2, r3 - 8000e60: 6522 str r2, [r4, #80] ; 0x50 - tickstart = HAL_GetTick(); - 8000e62: f7ff fd97 bl 8000994 - 8000e66: 0007 movs r7, r0 - while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == 0U) - 8000e68: 2280 movs r2, #128 ; 0x80 - 8000e6a: 6d23 ldr r3, [r4, #80] ; 0x50 - 8000e6c: 0092 lsls r2, r2, #2 - 8000e6e: 4213 tst r3, r2 - 8000e70: d010 beq.n 8000e94 - if(pwrclkchanged == SET) - 8000e72: 9b01 ldr r3, [sp, #4] - 8000e74: 2b01 cmp r3, #1 - 8000e76: d000 beq.n 8000e7a - 8000e78: e679 b.n 8000b6e - __HAL_RCC_PWR_CLK_DISABLE(); - 8000e7a: 6ba3 ldr r3, [r4, #56] ; 0x38 - 8000e7c: 4a3c ldr r2, [pc, #240] ; (8000f70 ) - 8000e7e: 4013 ands r3, r2 - 8000e80: 63a3 str r3, [r4, #56] ; 0x38 - 8000e82: e674 b.n 8000b6e - __HAL_RCC_LSE_CONFIG(RCC_OscInitStruct->LSEState); - 8000e84: 6d23 ldr r3, [r4, #80] ; 0x50 - 8000e86: 4a37 ldr r2, [pc, #220] ; (8000f64 ) - 8000e88: 4013 ands r3, r2 - 8000e8a: 6523 str r3, [r4, #80] ; 0x50 - 8000e8c: 6d23 ldr r3, [r4, #80] ; 0x50 - 8000e8e: 4a36 ldr r2, [pc, #216] ; (8000f68 ) - 8000e90: 4013 ands r3, r2 - 8000e92: e794 b.n 8000dbe - if((HAL_GetTick() - tickstart ) > RCC_LSE_TIMEOUT_VALUE) - 8000e94: f7ff fd7e bl 8000994 - 8000e98: 4b34 ldr r3, [pc, #208] ; (8000f6c ) - 8000e9a: 1bc0 subs r0, r0, r7 - 8000e9c: 4298 cmp r0, r3 - 8000e9e: d9e3 bls.n 8000e68 - 8000ea0: e68d b.n 8000bbe - if(sysclk_source != RCC_SYSCLKSOURCE_STATUS_PLLCLK) - 8000ea2: 2e0c cmp r6, #12 - 8000ea4: d043 beq.n 8000f2e - if((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_ON) - 8000ea6: 4a33 ldr r2, [pc, #204] ; (8000f74 ) - 8000ea8: 2b02 cmp r3, #2 - 8000eaa: d12e bne.n 8000f0a - __HAL_RCC_PLL_DISABLE(); - 8000eac: 6823 ldr r3, [r4, #0] - while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != 0U) - 8000eae: 2780 movs r7, #128 ; 0x80 - __HAL_RCC_PLL_DISABLE(); - 8000eb0: 4013 ands r3, r2 - 8000eb2: 6023 str r3, [r4, #0] - tickstart = HAL_GetTick(); - 8000eb4: f7ff fd6e bl 8000994 - 8000eb8: 0006 movs r6, r0 - while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != 0U) - 8000eba: 04bf lsls r7, r7, #18 - 8000ebc: 6823 ldr r3, [r4, #0] - 8000ebe: 423b tst r3, r7 - 8000ec0: d11d bne.n 8000efe - __HAL_RCC_PLL_CONFIG(RCC_OscInitStruct->PLL.PLLSource, - 8000ec2: 6ae9 ldr r1, [r5, #44] ; 0x2c - 8000ec4: 6aab ldr r3, [r5, #40] ; 0x28 - 8000ec6: 68e2 ldr r2, [r4, #12] - 8000ec8: 430b orrs r3, r1 - 8000eca: 492b ldr r1, [pc, #172] ; (8000f78 ) - while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == 0U) - 8000ecc: 2680 movs r6, #128 ; 0x80 - __HAL_RCC_PLL_CONFIG(RCC_OscInitStruct->PLL.PLLSource, - 8000ece: 400a ands r2, r1 - 8000ed0: 4313 orrs r3, r2 - 8000ed2: 6b2a ldr r2, [r5, #48] ; 0x30 - while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == 0U) - 8000ed4: 04b6 lsls r6, r6, #18 - __HAL_RCC_PLL_CONFIG(RCC_OscInitStruct->PLL.PLLSource, - 8000ed6: 4313 orrs r3, r2 - 8000ed8: 60e3 str r3, [r4, #12] - __HAL_RCC_PLL_ENABLE(); - 8000eda: 2380 movs r3, #128 ; 0x80 - 8000edc: 6822 ldr r2, [r4, #0] - 8000ede: 045b lsls r3, r3, #17 - 8000ee0: 4313 orrs r3, r2 - 8000ee2: 6023 str r3, [r4, #0] - tickstart = HAL_GetTick(); - 8000ee4: f7ff fd56 bl 8000994 - 8000ee8: 0005 movs r5, r0 - while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == 0U) - 8000eea: 6823 ldr r3, [r4, #0] - 8000eec: 4233 tst r3, r6 - 8000eee: d000 beq.n 8000ef2 - 8000ef0: e641 b.n 8000b76 - if((HAL_GetTick() - tickstart ) > PLL_TIMEOUT_VALUE) - 8000ef2: f7ff fd4f bl 8000994 - 8000ef6: 1b40 subs r0, r0, r5 - 8000ef8: 2802 cmp r0, #2 - 8000efa: d9f6 bls.n 8000eea - 8000efc: e65f b.n 8000bbe - if((HAL_GetTick() - tickstart ) > PLL_TIMEOUT_VALUE) - 8000efe: f7ff fd49 bl 8000994 - 8000f02: 1b80 subs r0, r0, r6 - 8000f04: 2802 cmp r0, #2 - 8000f06: d9d9 bls.n 8000ebc - 8000f08: e659 b.n 8000bbe - __HAL_RCC_PLL_DISABLE(); - 8000f0a: 6823 ldr r3, [r4, #0] - while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != 0U) - 8000f0c: 2680 movs r6, #128 ; 0x80 - __HAL_RCC_PLL_DISABLE(); - 8000f0e: 4013 ands r3, r2 - 8000f10: 6023 str r3, [r4, #0] - tickstart = HAL_GetTick(); - 8000f12: f7ff fd3f bl 8000994 - 8000f16: 0005 movs r5, r0 - while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != 0U) - 8000f18: 04b6 lsls r6, r6, #18 - 8000f1a: 6823 ldr r3, [r4, #0] - 8000f1c: 4233 tst r3, r6 - 8000f1e: d100 bne.n 8000f22 - 8000f20: e629 b.n 8000b76 - if((HAL_GetTick() - tickstart ) > PLL_TIMEOUT_VALUE) - 8000f22: f7ff fd37 bl 8000994 - 8000f26: 1b40 subs r0, r0, r5 - 8000f28: 2802 cmp r0, #2 - 8000f2a: d9f6 bls.n 8000f1a - 8000f2c: e647 b.n 8000bbe - return HAL_ERROR; - 8000f2e: 0018 movs r0, r3 - if((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_OFF) - 8000f30: 2b01 cmp r3, #1 - 8000f32: d100 bne.n 8000f36 - 8000f34: e644 b.n 8000bc0 - if((READ_BIT(pll_config, RCC_CFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || - 8000f36: 2280 movs r2, #128 ; 0x80 - pll_config = RCC->CFGR; - 8000f38: 68e3 ldr r3, [r4, #12] - if((READ_BIT(pll_config, RCC_CFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || - 8000f3a: 6aa9 ldr r1, [r5, #40] ; 0x28 - 8000f3c: 0252 lsls r2, r2, #9 - 8000f3e: 401a ands r2, r3 - 8000f40: 428a cmp r2, r1 - 8000f42: d000 beq.n 8000f46 - 8000f44: e625 b.n 8000b92 - (READ_BIT(pll_config, RCC_CFGR_PLLMUL) != RCC_OscInitStruct->PLL.PLLMUL) || - 8000f46: 22f0 movs r2, #240 ; 0xf0 - if((READ_BIT(pll_config, RCC_CFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || - 8000f48: 6ae9 ldr r1, [r5, #44] ; 0x2c - (READ_BIT(pll_config, RCC_CFGR_PLLMUL) != RCC_OscInitStruct->PLL.PLLMUL) || - 8000f4a: 0392 lsls r2, r2, #14 - 8000f4c: 401a ands r2, r3 - if((READ_BIT(pll_config, RCC_CFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || - 8000f4e: 428a cmp r2, r1 - 8000f50: d000 beq.n 8000f54 - 8000f52: e61e b.n 8000b92 - (READ_BIT(pll_config, RCC_CFGR_PLLDIV) != RCC_OscInitStruct->PLL.PLLDIV)) - 8000f54: 22c0 movs r2, #192 ; 0xc0 - 8000f56: 0412 lsls r2, r2, #16 - 8000f58: 4013 ands r3, r2 - (READ_BIT(pll_config, RCC_CFGR_PLLMUL) != RCC_OscInitStruct->PLL.PLLMUL) || - 8000f5a: 6b2a ldr r2, [r5, #48] ; 0x30 - 8000f5c: 4293 cmp r3, r2 - 8000f5e: d100 bne.n 8000f62 - 8000f60: e609 b.n 8000b76 - 8000f62: e616 b.n 8000b92 - 8000f64: fffffeff .word 0xfffffeff - 8000f68: fffffbff .word 0xfffffbff - 8000f6c: 00001388 .word 0x00001388 - 8000f70: efffffff .word 0xefffffff - 8000f74: feffffff .word 0xfeffffff - 8000f78: ff02ffff .word 0xff02ffff - -08000f7c : -{ - 8000f7c: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} - 8000f7e: 1e04 subs r4, r0, #0 - 8000f80: 9101 str r1, [sp, #4] - if(RCC_ClkInitStruct == NULL) - 8000f82: d101 bne.n 8000f88 - return HAL_ERROR; - 8000f84: 2001 movs r0, #1 -} - 8000f86: bdfe pop {r1, r2, r3, r4, r5, r6, r7, pc} - if(FLatency > __HAL_FLASH_GET_LATENCY()) - 8000f88: 2601 movs r6, #1 - 8000f8a: 4d5b ldr r5, [pc, #364] ; (80010f8 ) - 8000f8c: 9a01 ldr r2, [sp, #4] - 8000f8e: 682b ldr r3, [r5, #0] - 8000f90: 4033 ands r3, r6 - 8000f92: 4293 cmp r3, r2 - 8000f94: d331 bcc.n 8000ffa - if(((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_HCLK) == RCC_CLOCKTYPE_HCLK) - 8000f96: 6822 ldr r2, [r4, #0] - 8000f98: 0793 lsls r3, r2, #30 - 8000f9a: d443 bmi.n 8001024 - if(((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_SYSCLK) == RCC_CLOCKTYPE_SYSCLK) - 8000f9c: 07d3 lsls r3, r2, #31 - 8000f9e: d449 bmi.n 8001034 - if(FLatency < __HAL_FLASH_GET_LATENCY()) - 8000fa0: 2601 movs r6, #1 - 8000fa2: 682b ldr r3, [r5, #0] - 8000fa4: 9a01 ldr r2, [sp, #4] - 8000fa6: 4033 ands r3, r6 - 8000fa8: 4293 cmp r3, r2 - 8000faa: d909 bls.n 8000fc0 - __HAL_FLASH_SET_LATENCY(FLatency); - 8000fac: 682b ldr r3, [r5, #0] - 8000fae: 43b3 bics r3, r6 - 8000fb0: 602b str r3, [r5, #0] - tickstart = HAL_GetTick(); - 8000fb2: f7ff fcef bl 8000994 - 8000fb6: 0007 movs r7, r0 - while (__HAL_FLASH_GET_LATENCY() != FLatency) - 8000fb8: 682b ldr r3, [r5, #0] - 8000fba: 4233 tst r3, r6 - 8000fbc: d000 beq.n 8000fc0 - 8000fbe: e08c b.n 80010da - if(((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK1) == RCC_CLOCKTYPE_PCLK1) - 8000fc0: 6822 ldr r2, [r4, #0] - 8000fc2: 4d4e ldr r5, [pc, #312] ; (80010fc ) - 8000fc4: 0753 lsls r3, r2, #29 - 8000fc6: d500 bpl.n 8000fca - 8000fc8: e08f b.n 80010ea - if(((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK2) == RCC_CLOCKTYPE_PCLK2) - 8000fca: 0713 lsls r3, r2, #28 - 8000fcc: d506 bpl.n 8000fdc - MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE2, ((RCC_ClkInitStruct->APB2CLKDivider) << 3)); - 8000fce: 68ea ldr r2, [r5, #12] - 8000fd0: 6923 ldr r3, [r4, #16] - 8000fd2: 494b ldr r1, [pc, #300] ; (8001100 ) - 8000fd4: 00db lsls r3, r3, #3 - 8000fd6: 400a ands r2, r1 - 8000fd8: 4313 orrs r3, r2 - 8000fda: 60eb str r3, [r5, #12] - SystemCoreClock = HAL_RCC_GetSysClockFreq() >> AHBPrescTable[(RCC->CFGR & RCC_CFGR_HPRE)>> RCC_CFGR_HPRE_Pos]; - 8000fdc: f7ff fd36 bl 8000a4c - 8000fe0: 68eb ldr r3, [r5, #12] - 8000fe2: 4a48 ldr r2, [pc, #288] ; (8001104 ) - 8000fe4: 061b lsls r3, r3, #24 - 8000fe6: 0f1b lsrs r3, r3, #28 - 8000fe8: 5cd3 ldrb r3, [r2, r3] - 8000fea: 40d8 lsrs r0, r3 - 8000fec: 4b46 ldr r3, [pc, #280] ; (8001108 ) - 8000fee: 6018 str r0, [r3, #0] - status = HAL_InitTick(uwTickPrio); - 8000ff0: 4b46 ldr r3, [pc, #280] ; (800110c ) - 8000ff2: 6818 ldr r0, [r3, #0] - 8000ff4: f7ff fc8a bl 800090c - if(status != HAL_OK) - 8000ff8: e7c5 b.n 8000f86 - __HAL_FLASH_SET_LATENCY(FLatency); - 8000ffa: 682b ldr r3, [r5, #0] - 8000ffc: 9a01 ldr r2, [sp, #4] - 8000ffe: 43b3 bics r3, r6 - 8001000: 4313 orrs r3, r2 - 8001002: 602b str r3, [r5, #0] - tickstart = HAL_GetTick(); - 8001004: f7ff fcc6 bl 8000994 - 8001008: 0007 movs r7, r0 - while (__HAL_FLASH_GET_LATENCY() != FLatency) - 800100a: 682b ldr r3, [r5, #0] - 800100c: 9a01 ldr r2, [sp, #4] - 800100e: 4033 ands r3, r6 - 8001010: 4293 cmp r3, r2 - 8001012: d0c0 beq.n 8000f96 - if ((HAL_GetTick() - tickstart) > CLOCKSWITCH_TIMEOUT_VALUE) - 8001014: f7ff fcbe bl 8000994 - 8001018: 4b3d ldr r3, [pc, #244] ; (8001110 ) - 800101a: 1bc0 subs r0, r0, r7 - 800101c: 4298 cmp r0, r3 - 800101e: d9f4 bls.n 800100a - return HAL_TIMEOUT; - 8001020: 2003 movs r0, #3 - 8001022: e7b0 b.n 8000f86 - MODIFY_REG(RCC->CFGR, RCC_CFGR_HPRE, RCC_ClkInitStruct->AHBCLKDivider); - 8001024: 20f0 movs r0, #240 ; 0xf0 - 8001026: 4935 ldr r1, [pc, #212] ; (80010fc ) - 8001028: 68cb ldr r3, [r1, #12] - 800102a: 4383 bics r3, r0 - 800102c: 68a0 ldr r0, [r4, #8] - 800102e: 4303 orrs r3, r0 - 8001030: 60cb str r3, [r1, #12] - 8001032: e7b3 b.n 8000f9c - if(RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_HSE) - 8001034: 4e31 ldr r6, [pc, #196] ; (80010fc ) - 8001036: 6862 ldr r2, [r4, #4] - if(__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == 0U) - 8001038: 6833 ldr r3, [r6, #0] - if(RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_HSE) - 800103a: 2a02 cmp r2, #2 - 800103c: d118 bne.n 8001070 - if(__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == 0U) - 800103e: 039b lsls r3, r3, #14 - 8001040: d5a0 bpl.n 8000f84 - __HAL_RCC_SYSCLK_CONFIG(RCC_ClkInitStruct->SYSCLKSource); - 8001042: 2103 movs r1, #3 - 8001044: 68f3 ldr r3, [r6, #12] - 8001046: 438b bics r3, r1 - 8001048: 4313 orrs r3, r2 - 800104a: 60f3 str r3, [r6, #12] - tickstart = HAL_GetTick(); - 800104c: f7ff fca2 bl 8000994 - if(RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_HSE) - 8001050: 6863 ldr r3, [r4, #4] - tickstart = HAL_GetTick(); - 8001052: 0007 movs r7, r0 - if(RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_HSE) - 8001054: 2b02 cmp r3, #2 - 8001056: d118 bne.n 800108a - while (__HAL_RCC_GET_SYSCLK_SOURCE() != RCC_SYSCLKSOURCE_STATUS_HSE) - 8001058: 220c movs r2, #12 - 800105a: 68f3 ldr r3, [r6, #12] - 800105c: 4013 ands r3, r2 - 800105e: 2b08 cmp r3, #8 - 8001060: d09e beq.n 8000fa0 - if((HAL_GetTick() - tickstart ) > CLOCKSWITCH_TIMEOUT_VALUE) - 8001062: f7ff fc97 bl 8000994 - 8001066: 4b2a ldr r3, [pc, #168] ; (8001110 ) - 8001068: 1bc0 subs r0, r0, r7 - 800106a: 4298 cmp r0, r3 - 800106c: d9f4 bls.n 8001058 - 800106e: e7d7 b.n 8001020 - else if(RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_PLLCLK) - 8001070: 2a03 cmp r2, #3 - 8001072: d102 bne.n 800107a - if(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == 0U) - 8001074: 019b lsls r3, r3, #6 - 8001076: d4e4 bmi.n 8001042 - 8001078: e784 b.n 8000f84 - else if(RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_HSI) - 800107a: 2a01 cmp r2, #1 - 800107c: d102 bne.n 8001084 - if(__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == 0U) - 800107e: 075b lsls r3, r3, #29 - 8001080: d4df bmi.n 8001042 - 8001082: e77f b.n 8000f84 - if(__HAL_RCC_GET_FLAG(RCC_FLAG_MSIRDY) == 0U) - 8001084: 059b lsls r3, r3, #22 - 8001086: d4dc bmi.n 8001042 - 8001088: e77c b.n 8000f84 - else if(RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_PLLCLK) - 800108a: 2b03 cmp r3, #3 - 800108c: d10b bne.n 80010a6 - while (__HAL_RCC_GET_SYSCLK_SOURCE() != RCC_SYSCLKSOURCE_STATUS_PLLCLK) - 800108e: 220c movs r2, #12 - 8001090: 68f3 ldr r3, [r6, #12] - 8001092: 4013 ands r3, r2 - 8001094: 4293 cmp r3, r2 - 8001096: d083 beq.n 8000fa0 - if((HAL_GetTick() - tickstart ) > CLOCKSWITCH_TIMEOUT_VALUE) - 8001098: f7ff fc7c bl 8000994 - 800109c: 4b1c ldr r3, [pc, #112] ; (8001110 ) - 800109e: 1bc0 subs r0, r0, r7 - 80010a0: 4298 cmp r0, r3 - 80010a2: d9f4 bls.n 800108e - 80010a4: e7bc b.n 8001020 - else if(RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_HSI) - 80010a6: 2b01 cmp r3, #1 - 80010a8: d011 beq.n 80010ce - while(__HAL_RCC_GET_SYSCLK_SOURCE() != RCC_SYSCLKSOURCE_STATUS_MSI) - 80010aa: 220c movs r2, #12 - 80010ac: 68f3 ldr r3, [r6, #12] - 80010ae: 4213 tst r3, r2 - 80010b0: d100 bne.n 80010b4 - 80010b2: e775 b.n 8000fa0 - if((HAL_GetTick() - tickstart ) > CLOCKSWITCH_TIMEOUT_VALUE) - 80010b4: f7ff fc6e bl 8000994 - 80010b8: 4b15 ldr r3, [pc, #84] ; (8001110 ) - 80010ba: 1bc0 subs r0, r0, r7 - 80010bc: 4298 cmp r0, r3 - 80010be: d9f4 bls.n 80010aa - 80010c0: e7ae b.n 8001020 - if((HAL_GetTick() - tickstart ) > CLOCKSWITCH_TIMEOUT_VALUE) - 80010c2: f7ff fc67 bl 8000994 - 80010c6: 4b12 ldr r3, [pc, #72] ; (8001110 ) - 80010c8: 1bc0 subs r0, r0, r7 - 80010ca: 4298 cmp r0, r3 - 80010cc: d8a8 bhi.n 8001020 - while (__HAL_RCC_GET_SYSCLK_SOURCE() != RCC_SYSCLKSOURCE_STATUS_HSI) - 80010ce: 220c movs r2, #12 - 80010d0: 68f3 ldr r3, [r6, #12] - 80010d2: 4013 ands r3, r2 - 80010d4: 2b04 cmp r3, #4 - 80010d6: d1f4 bne.n 80010c2 - 80010d8: e762 b.n 8000fa0 - if ((HAL_GetTick() - tickstart) > CLOCKSWITCH_TIMEOUT_VALUE) - 80010da: f7ff fc5b bl 8000994 - 80010de: 4b0c ldr r3, [pc, #48] ; (8001110 ) - 80010e0: 1bc0 subs r0, r0, r7 - 80010e2: 4298 cmp r0, r3 - 80010e4: d800 bhi.n 80010e8 - 80010e6: e767 b.n 8000fb8 - 80010e8: e79a b.n 8001020 - MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE1, RCC_ClkInitStruct->APB1CLKDivider); - 80010ea: 68eb ldr r3, [r5, #12] - 80010ec: 4909 ldr r1, [pc, #36] ; (8001114 ) - 80010ee: 400b ands r3, r1 - 80010f0: 68e1 ldr r1, [r4, #12] - 80010f2: 430b orrs r3, r1 - 80010f4: 60eb str r3, [r5, #12] - 80010f6: e768 b.n 8000fca - 80010f8: 40022000 .word 0x40022000 - 80010fc: 40021000 .word 0x40021000 - 8001100: ffffc7ff .word 0xffffc7ff - 8001104: 08001600 .word 0x08001600 - 8001108: 20000000 .word 0x20000000 - 800110c: 20000008 .word 0x20000008 - 8001110: 00001388 .word 0x00001388 - 8001114: fffff8ff .word 0xfffff8ff - -08001118 : - - /* Check the parameters */ - assert_param(IS_RCC_PERIPHCLOCK(PeriphClkInit->PeriphClockSelection)); - - /*------------------------------- RTC/LCD Configuration ------------------------*/ - if ((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_RTC) == RCC_PERIPHCLK_RTC) - 8001118: 6803 ldr r3, [r0, #0] -{ - 800111a: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} - 800111c: 0005 movs r5, r0 - if ((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_RTC) == RCC_PERIPHCLK_RTC) - 800111e: 069b lsls r3, r3, #26 - 8001120: d53d bpl.n 800119e -#endif /* LCD */ - - /* As soon as function is called to change RTC clock source, activation of the - power domain is done. */ - /* Requires to enable write access to Backup Domain of necessary */ - if(__HAL_RCC_PWR_IS_CLK_DISABLED()) - 8001122: 2380 movs r3, #128 ; 0x80 - FlagStatus pwrclkchanged = RESET; - 8001124: 2100 movs r1, #0 - if(__HAL_RCC_PWR_IS_CLK_DISABLED()) - 8001126: 4c50 ldr r4, [pc, #320] ; (8001268 ) - 8001128: 055b lsls r3, r3, #21 - 800112a: 6ba2 ldr r2, [r4, #56] ; 0x38 - FlagStatus pwrclkchanged = RESET; - 800112c: 9100 str r1, [sp, #0] - if(__HAL_RCC_PWR_IS_CLK_DISABLED()) - 800112e: 421a tst r2, r3 - 8001130: d104 bne.n 800113c - { - __HAL_RCC_PWR_CLK_ENABLE(); - 8001132: 6ba2 ldr r2, [r4, #56] ; 0x38 - 8001134: 4313 orrs r3, r2 - 8001136: 63a3 str r3, [r4, #56] ; 0x38 - pwrclkchanged = SET; - 8001138: 2301 movs r3, #1 - 800113a: 9300 str r3, [sp, #0] - } - - if(HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 800113c: 2780 movs r7, #128 ; 0x80 - 800113e: 4e4b ldr r6, [pc, #300] ; (800126c ) - 8001140: 007f lsls r7, r7, #1 - 8001142: 6833 ldr r3, [r6, #0] - 8001144: 423b tst r3, r7 - 8001146: d051 beq.n 80011ec - } - } - - /* Check if user wants to change HSE RTC prescaler whereas HSE is enabled */ - temp_reg = (RCC->CR & RCC_CR_RTCPRE); - if ((temp_reg != (PeriphClkInit->RTCClockSelection & RCC_CR_RTCPRE)) - 8001148: 686b ldr r3, [r5, #4] - 800114a: 22c0 movs r2, #192 ; 0xc0 - 800114c: 20c0 movs r0, #192 ; 0xc0 - 800114e: 001e movs r6, r3 - temp_reg = (RCC->CR & RCC_CR_RTCPRE); - 8001150: 6821 ldr r1, [r4, #0] - if ((temp_reg != (PeriphClkInit->RTCClockSelection & RCC_CR_RTCPRE)) - 8001152: 0292 lsls r2, r2, #10 - 8001154: 0380 lsls r0, r0, #14 - 8001156: 0017 movs r7, r2 - 8001158: 4016 ands r6, r2 - 800115a: 4003 ands r3, r0 - temp_reg = (RCC->CR & RCC_CR_RTCPRE); - 800115c: 4001 ands r1, r0 - if ((temp_reg != (PeriphClkInit->RTCClockSelection & RCC_CR_RTCPRE)) - 800115e: 428b cmp r3, r1 - 8001160: d155 bne.n 800120e - } - } - } - - /* Reset the Backup domain only if the RTC Clock source selection is modified from reset value */ - temp_reg = (RCC->CSR & RCC_CSR_RTCSEL); - 8001162: 6d23 ldr r3, [r4, #80] ; 0x50 - 8001164: 001a movs r2, r3 - 8001166: 403a ands r2, r7 - - if((temp_reg != 0x00000000U) && (((temp_reg != (PeriphClkInit->RTCClockSelection & RCC_CSR_RTCSEL)) \ - 8001168: 423b tst r3, r7 - 800116a: d157 bne.n 800121c - return HAL_TIMEOUT; - } - } - } - } - __HAL_RCC_RTC_CONFIG(PeriphClkInit->RTCClockSelection); - 800116c: 6869 ldr r1, [r5, #4] - 800116e: 23c0 movs r3, #192 ; 0xc0 - 8001170: 000a movs r2, r1 - 8001172: 029b lsls r3, r3, #10 - 8001174: 401a ands r2, r3 - 8001176: 429a cmp r2, r3 - 8001178: d107 bne.n 800118a - 800117a: 6823 ldr r3, [r4, #0] - 800117c: 483c ldr r0, [pc, #240] ; (8001270 ) - 800117e: 4003 ands r3, r0 - 8001180: 20c0 movs r0, #192 ; 0xc0 - 8001182: 0380 lsls r0, r0, #14 - 8001184: 4001 ands r1, r0 - 8001186: 430b orrs r3, r1 - 8001188: 6023 str r3, [r4, #0] - 800118a: 6d23 ldr r3, [r4, #80] ; 0x50 - 800118c: 431a orrs r2, r3 - - /* Require to disable power clock if necessary */ - if(pwrclkchanged == SET) - 800118e: 9b00 ldr r3, [sp, #0] - __HAL_RCC_RTC_CONFIG(PeriphClkInit->RTCClockSelection); - 8001190: 6522 str r2, [r4, #80] ; 0x50 - if(pwrclkchanged == SET) - 8001192: 2b01 cmp r3, #1 - 8001194: d103 bne.n 800119e - { - __HAL_RCC_PWR_CLK_DISABLE(); - 8001196: 6ba3 ldr r3, [r4, #56] ; 0x38 - 8001198: 4a36 ldr r2, [pc, #216] ; (8001274 ) - 800119a: 4013 ands r3, r2 - 800119c: 63a3 str r3, [r4, #56] ; 0x38 - __HAL_RCC_USART1_CONFIG(PeriphClkInit->Usart1ClockSelection); - } -#endif /* RCC_CCIPR_USART1SEL */ - - /*----------------------------- USART2 Configuration --------------------------*/ - if(((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_USART2) == RCC_PERIPHCLK_USART2) - 800119e: 682a ldr r2, [r5, #0] - 80011a0: 0793 lsls r3, r2, #30 - 80011a2: d506 bpl.n 80011b2 - { - /* Check the parameters */ - assert_param(IS_RCC_USART2CLKSOURCE(PeriphClkInit->Usart2ClockSelection)); - - /* Configure the USART2 clock source */ - __HAL_RCC_USART2_CONFIG(PeriphClkInit->Usart2ClockSelection); - 80011a4: 200c movs r0, #12 - 80011a6: 4930 ldr r1, [pc, #192] ; (8001268 ) - 80011a8: 6ccb ldr r3, [r1, #76] ; 0x4c - 80011aa: 4383 bics r3, r0 - 80011ac: 68a8 ldr r0, [r5, #8] - 80011ae: 4303 orrs r3, r0 - 80011b0: 64cb str r3, [r1, #76] ; 0x4c - } - - /*------------------------------ LPUART1 Configuration ------------------------*/ - if(((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_LPUART1) == RCC_PERIPHCLK_LPUART1) - 80011b2: 0753 lsls r3, r2, #29 - 80011b4: d506 bpl.n 80011c4 - { - /* Check the parameters */ - assert_param(IS_RCC_LPUART1CLKSOURCE(PeriphClkInit->Lpuart1ClockSelection)); - - /* Configure the LPUAR1 clock source */ - __HAL_RCC_LPUART1_CONFIG(PeriphClkInit->Lpuart1ClockSelection); - 80011b6: 492c ldr r1, [pc, #176] ; (8001268 ) - 80011b8: 482f ldr r0, [pc, #188] ; (8001278 ) - 80011ba: 6ccb ldr r3, [r1, #76] ; 0x4c - 80011bc: 4003 ands r3, r0 - 80011be: 68e8 ldr r0, [r5, #12] - 80011c0: 4303 orrs r3, r0 - 80011c2: 64cb str r3, [r1, #76] ; 0x4c - } - - /*------------------------------ I2C1 Configuration ------------------------*/ - if(((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_I2C1) == RCC_PERIPHCLK_I2C1) - 80011c4: 0713 lsls r3, r2, #28 - 80011c6: d506 bpl.n 80011d6 - { - /* Check the parameters */ - assert_param(IS_RCC_I2C1CLKSOURCE(PeriphClkInit->I2c1ClockSelection)); - - /* Configure the I2C1 clock source */ - __HAL_RCC_I2C1_CONFIG(PeriphClkInit->I2c1ClockSelection); - 80011c8: 4927 ldr r1, [pc, #156] ; (8001268 ) - 80011ca: 482c ldr r0, [pc, #176] ; (800127c ) - 80011cc: 6ccb ldr r3, [r1, #76] ; 0x4c - 80011ce: 4003 ands r3, r0 - 80011d0: 6928 ldr r0, [r5, #16] - 80011d2: 4303 orrs r3, r0 - 80011d4: 64cb str r3, [r1, #76] ; 0x4c - { - assert_param(IS_RCC_LPTIMCLK(PeriphClkInit->LptimClockSelection)); - __HAL_RCC_LPTIM1_CONFIG(PeriphClkInit->LptimClockSelection); - } - - return HAL_OK; - 80011d6: 2000 movs r0, #0 - if(((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_LPTIM1) == (RCC_PERIPHCLK_LPTIM1)) - 80011d8: 0613 lsls r3, r2, #24 - 80011da: d517 bpl.n 800120c - __HAL_RCC_LPTIM1_CONFIG(PeriphClkInit->LptimClockSelection); - 80011dc: 4a22 ldr r2, [pc, #136] ; (8001268 ) - 80011de: 4928 ldr r1, [pc, #160] ; (8001280 ) - 80011e0: 6cd3 ldr r3, [r2, #76] ; 0x4c - 80011e2: 400b ands r3, r1 - 80011e4: 6969 ldr r1, [r5, #20] - 80011e6: 430b orrs r3, r1 - 80011e8: 64d3 str r3, [r2, #76] ; 0x4c - 80011ea: e00f b.n 800120c - SET_BIT(PWR->CR, PWR_CR_DBP); - 80011ec: 6833 ldr r3, [r6, #0] - 80011ee: 433b orrs r3, r7 - 80011f0: 6033 str r3, [r6, #0] - tickstart = HAL_GetTick(); - 80011f2: f7ff fbcf bl 8000994 - 80011f6: 9001 str r0, [sp, #4] - while(HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 80011f8: 6833 ldr r3, [r6, #0] - 80011fa: 423b tst r3, r7 - 80011fc: d1a4 bne.n 8001148 - if((HAL_GetTick() - tickstart) > RCC_DBP_TIMEOUT_VALUE) - 80011fe: f7ff fbc9 bl 8000994 - 8001202: 9b01 ldr r3, [sp, #4] - 8001204: 1ac0 subs r0, r0, r3 - 8001206: 2864 cmp r0, #100 ; 0x64 - 8001208: d9f6 bls.n 80011f8 - return HAL_TIMEOUT; - 800120a: 2003 movs r0, #3 -} - 800120c: bdfe pop {r1, r2, r3, r4, r5, r6, r7, pc} - if ((PeriphClkInit->RTCClockSelection & RCC_CSR_RTCSEL) == RCC_CSR_RTCSEL_HSE) - 800120e: 4296 cmp r6, r2 - 8001210: d1a7 bne.n 8001162 - if (HAL_IS_BIT_SET(RCC->CR, RCC_CR_HSERDY)) - 8001212: 6823 ldr r3, [r4, #0] - return HAL_ERROR; - 8001214: 2001 movs r0, #1 - if (HAL_IS_BIT_SET(RCC->CR, RCC_CR_HSERDY)) - 8001216: 039b lsls r3, r3, #14 - 8001218: d5a3 bpl.n 8001162 - 800121a: e7f7 b.n 800120c - if((temp_reg != 0x00000000U) && (((temp_reg != (PeriphClkInit->RTCClockSelection & RCC_CSR_RTCSEL)) \ - 800121c: 42b2 cmp r2, r6 - 800121e: d0a5 beq.n 800116c - && (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_RTC) == RCC_PERIPHCLK_RTC)) - 8001220: 682b ldr r3, [r5, #0] - 8001222: 069b lsls r3, r3, #26 - 8001224: d5a2 bpl.n 800116c - __HAL_RCC_BACKUPRESET_FORCE(); - 8001226: 2280 movs r2, #128 ; 0x80 - temp_reg = (RCC->CSR & ~(RCC_CSR_RTCSEL)); - 8001228: 6d21 ldr r1, [r4, #80] ; 0x50 - __HAL_RCC_BACKUPRESET_FORCE(); - 800122a: 6d20 ldr r0, [r4, #80] ; 0x50 - 800122c: 0312 lsls r2, r2, #12 - 800122e: 4302 orrs r2, r0 - 8001230: 6522 str r2, [r4, #80] ; 0x50 - __HAL_RCC_BACKUPRESET_RELEASE(); - 8001232: 6d22 ldr r2, [r4, #80] ; 0x50 - temp_reg = (RCC->CSR & ~(RCC_CSR_RTCSEL)); - 8001234: 4b13 ldr r3, [pc, #76] ; (8001284 ) - __HAL_RCC_BACKUPRESET_RELEASE(); - 8001236: 4814 ldr r0, [pc, #80] ; (8001288 ) - temp_reg = (RCC->CSR & ~(RCC_CSR_RTCSEL)); - 8001238: 400b ands r3, r1 - __HAL_RCC_BACKUPRESET_RELEASE(); - 800123a: 4002 ands r2, r0 - 800123c: 6522 str r2, [r4, #80] ; 0x50 - RCC->CSR = temp_reg; - 800123e: 6523 str r3, [r4, #80] ; 0x50 - if (HAL_IS_BIT_SET(temp_reg, RCC_CSR_LSEON)) - 8001240: 05cb lsls r3, r1, #23 - 8001242: d400 bmi.n 8001246 - 8001244: e792 b.n 800116c - tickstart = HAL_GetTick(); - 8001246: f7ff fba5 bl 8000994 - while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == 0U) - 800124a: 2780 movs r7, #128 ; 0x80 - tickstart = HAL_GetTick(); - 800124c: 0006 movs r6, r0 - while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == 0U) - 800124e: 00bf lsls r7, r7, #2 - 8001250: 6d23 ldr r3, [r4, #80] ; 0x50 - 8001252: 423b tst r3, r7 - 8001254: d000 beq.n 8001258 - 8001256: e789 b.n 800116c - if((HAL_GetTick() - tickstart ) > RCC_LSE_TIMEOUT_VALUE) - 8001258: f7ff fb9c bl 8000994 - 800125c: 4b0b ldr r3, [pc, #44] ; (800128c ) - 800125e: 1b80 subs r0, r0, r6 - 8001260: 4298 cmp r0, r3 - 8001262: d9f5 bls.n 8001250 - 8001264: e7d1 b.n 800120a - 8001266: 46c0 nop ; (mov r8, r8) - 8001268: 40021000 .word 0x40021000 - 800126c: 40007000 .word 0x40007000 - 8001270: ffcfffff .word 0xffcfffff - 8001274: efffffff .word 0xefffffff - 8001278: fffff3ff .word 0xfffff3ff - 800127c: ffffcfff .word 0xffffcfff - 8001280: fff3ffff .word 0xfff3ffff - 8001284: fffcffff .word 0xfffcffff - 8001288: fff7ffff .word 0xfff7ffff - 800128c: 00001388 .word 0x00001388 - -08001290 : - * @retval An ErrorStatus enumeration value: - * - SUCCESS: GPIO registers are initialized according to GPIO_InitStruct content - * - ERROR: Not applicable - */ -ErrorStatus LL_GPIO_Init(GPIO_TypeDef *GPIOx, LL_GPIO_InitTypeDef *GPIO_InitStruct) -{ - 8001290: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} - uint32_t pinpos = 0x00000000U; - 8001292: 2300 movs r3, #0 -{ - 8001294: 0002 movs r2, r0 - /* ------------------------- Configure the port pins ---------------- */ - /* Initialize pinpos on first pin set */ - /* pinpos = 0; useless as already done in default initialization */ - - /* Configure the port pins */ - while (((GPIO_InitStruct->Pin) >> pinpos) != 0x00000000U) - 8001296: 680c ldr r4, [r1, #0] - } - - /* Pin Mode configuration */ - LL_GPIO_SetPinMode(GPIOx, currentpin, GPIO_InitStruct->Mode); - } - pinpos++; - 8001298: 9300 str r3, [sp, #0] - while (((GPIO_InitStruct->Pin) >> pinpos) != 0x00000000U) - 800129a: 0020 movs r0, r4 - 800129c: 9b00 ldr r3, [sp, #0] - 800129e: 40d8 lsrs r0, r3 - 80012a0: d100 bne.n 80012a4 - } - - - return (SUCCESS); -} - 80012a2: bdfe pop {r1, r2, r3, r4, r5, r6, r7, pc} - currentpin = (GPIO_InitStruct->Pin) & (0x00000001U << pinpos); - 80012a4: 2001 movs r0, #1 - 80012a6: 9b00 ldr r3, [sp, #0] - 80012a8: 4098 lsls r0, r3 - 80012aa: 0023 movs r3, r4 - 80012ac: 4003 ands r3, r0 - if (currentpin) - 80012ae: 4204 tst r4, r0 - 80012b0: d031 beq.n 8001316 - if ((GPIO_InitStruct->Mode == LL_GPIO_MODE_OUTPUT) || (GPIO_InitStruct->Mode == LL_GPIO_MODE_ALTERNATE)) - 80012b2: 6848 ldr r0, [r1, #4] - 80012b4: 2503 movs r5, #3 - 80012b6: 9001 str r0, [sp, #4] - 80012b8: 0018 movs r0, r3 - 80012ba: 4358 muls r0, r3 - 80012bc: 4345 muls r5, r0 - 80012be: 9e01 ldr r6, [sp, #4] - 80012c0: 43ed mvns r5, r5 - 80012c2: 1e77 subs r7, r6, #1 - 80012c4: 2f01 cmp r7, #1 - 80012c6: d80b bhi.n 80012e0 - MODIFY_REG(GPIOx->OSPEEDR, ((Pin * Pin) * GPIO_OSPEEDER_OSPEED0), ((Pin * Pin) * Speed)); - 80012c8: 688f ldr r7, [r1, #8] - 80012ca: 6896 ldr r6, [r2, #8] - 80012cc: 4347 muls r7, r0 - 80012ce: 402e ands r6, r5 - 80012d0: 4337 orrs r7, r6 - 80012d2: 6097 str r7, [r2, #8] - MODIFY_REG(GPIOx->OTYPER, PinMask, (PinMask * OutputType)); - 80012d4: 6857 ldr r7, [r2, #4] - 80012d6: 68ce ldr r6, [r1, #12] - 80012d8: 43a7 bics r7, r4 - 80012da: 4374 muls r4, r6 - 80012dc: 433c orrs r4, r7 - 80012de: 6054 str r4, [r2, #4] - MODIFY_REG(GPIOx->PUPDR, ((Pin * Pin) * GPIO_PUPDR_PUPD0), ((Pin * Pin) * Pull)); - 80012e0: 690c ldr r4, [r1, #16] - 80012e2: 68d7 ldr r7, [r2, #12] - 80012e4: 4344 muls r4, r0 - 80012e6: 402f ands r7, r5 - 80012e8: 433c orrs r4, r7 - 80012ea: 60d4 str r4, [r2, #12] - if (GPIO_InitStruct->Mode == LL_GPIO_MODE_ALTERNATE) - 80012ec: 9c01 ldr r4, [sp, #4] - 80012ee: 2c02 cmp r4, #2 - 80012f0: d10b bne.n 800130a - if (currentpin < LL_GPIO_PIN_8) - 80012f2: 694f ldr r7, [r1, #20] - 80012f4: 2bff cmp r3, #255 ; 0xff - 80012f6: d811 bhi.n 800131c - MODIFY_REG(GPIOx->AFR[0], ((((Pin * Pin) * Pin) * Pin) * GPIO_AFRL_AFSEL0), - 80012f8: 0003 movs r3, r0 - 80012fa: 260f movs r6, #15 - 80012fc: 4343 muls r3, r0 - 80012fe: 435e muls r6, r3 - 8001300: 437b muls r3, r7 - 8001302: 6a14 ldr r4, [r2, #32] - 8001304: 43b4 bics r4, r6 - 8001306: 431c orrs r4, r3 - 8001308: 6214 str r4, [r2, #32] - MODIFY_REG(GPIOx->MODER, ((Pin * Pin) * GPIO_MODER_MODE0), ((Pin * Pin) * Mode)); - 800130a: 6813 ldr r3, [r2, #0] - 800130c: 401d ands r5, r3 - 800130e: 9b01 ldr r3, [sp, #4] - 8001310: 4358 muls r0, r3 - 8001312: 4305 orrs r5, r0 - 8001314: 6015 str r5, [r2, #0] - pinpos++; - 8001316: 9b00 ldr r3, [sp, #0] - 8001318: 3301 adds r3, #1 - 800131a: e7bc b.n 8001296 - MODIFY_REG(GPIOx->AFR[1], (((((Pin >> 8U) * (Pin >> 8U)) * (Pin >> 8U)) * (Pin >> 8U)) * GPIO_AFRH_AFSEL8), - 800131c: 260f movs r6, #15 - 800131e: 0a1b lsrs r3, r3, #8 - 8001320: 435b muls r3, r3 - 8001322: 435b muls r3, r3 - 8001324: 435e muls r6, r3 - 8001326: 437b muls r3, r7 - 8001328: 6a54 ldr r4, [r2, #36] ; 0x24 - 800132a: 43b4 bics r4, r6 - 800132c: 431c orrs r4, r3 - 800132e: 6254 str r4, [r2, #36] ; 0x24 -} - 8001330: e7eb b.n 800130a - ... - -08001334 : - CLEAR_BIT(I2Cx->CR1, I2C_CR1_PE); - 8001334: 2201 movs r2, #1 - 8001336: 6803 ldr r3, [r0, #0] - * @retval An ErrorStatus enumeration value: - * - SUCCESS: I2C registers are initialized - * - ERROR: Not applicable - */ -ErrorStatus LL_I2C_Init(I2C_TypeDef *I2Cx, LL_I2C_InitTypeDef *I2C_InitStruct) -{ - 8001338: b530 push {r4, r5, lr} - 800133a: 4393 bics r3, r2 - 800133c: 6003 str r3, [r0, #0] - MODIFY_REG(I2Cx->CR1, I2C_CR1_ANFOFF | I2C_CR1_DNF, AnalogFilter | (DigitalFilter << I2C_CR1_DNF_Pos)); - 800133e: 68cb ldr r3, [r1, #12] - 8001340: 688d ldr r5, [r1, #8] - 8001342: 021b lsls r3, r3, #8 - 8001344: 6804 ldr r4, [r0, #0] - 8001346: 432b orrs r3, r5 - 8001348: 4d14 ldr r5, [pc, #80] ; (800139c ) - 800134a: 402c ands r4, r5 - 800134c: 4323 orrs r3, r4 - 800134e: 6003 str r3, [r0, #0] - WRITE_REG(I2Cx->TIMINGR, Timing); - 8001350: 684b ldr r3, [r1, #4] - * Disable, Configure and Enable I2Cx device own address 1 with parameters : - * - OwnAddress1: I2C_OAR1_OA1[9:0] bits - * - OwnAddrSize: I2C_OAR1_OA1MODE bit - */ - LL_I2C_DisableOwnAddress1(I2Cx); - LL_I2C_SetOwnAddress1(I2Cx, I2C_InitStruct->OwnAddress1, I2C_InitStruct->OwnAddrSize); - 8001352: 690d ldr r5, [r1, #16] - 8001354: 6103 str r3, [r0, #16] - SET_BIT(I2Cx->CR1, I2C_CR1_PE); - 8001356: 6803 ldr r3, [r0, #0] - 8001358: 431a orrs r2, r3 - 800135a: 6002 str r2, [r0, #0] - CLEAR_BIT(I2Cx->OAR1, I2C_OAR1_OA1EN); - 800135c: 6882 ldr r2, [r0, #8] - 800135e: 4b10 ldr r3, [pc, #64] ; (80013a0 ) - 8001360: 401a ands r2, r3 - 8001362: 6082 str r2, [r0, #8] - MODIFY_REG(I2Cx->OAR1, I2C_OAR1_OA1 | I2C_OAR1_OA1MODE, OwnAddress1 | OwnAddrSize); - 8001364: 6884 ldr r4, [r0, #8] - 8001366: 698a ldr r2, [r1, #24] - 8001368: 0ae4 lsrs r4, r4, #11 - 800136a: 02e4 lsls r4, r4, #11 - 800136c: 432a orrs r2, r5 - 800136e: 4322 orrs r2, r4 - 8001370: 6082 str r2, [r0, #8] - - /* OwnAdress1 == 0 is reserved for General Call address */ - if (I2C_InitStruct->OwnAddress1 != 0U) - 8001372: 001c movs r4, r3 - 8001374: 2d00 cmp r5, #0 - 8001376: d004 beq.n 8001382 - SET_BIT(I2Cx->OAR1, I2C_OAR1_OA1EN); - 8001378: 2380 movs r3, #128 ; 0x80 - 800137a: 6882 ldr r2, [r0, #8] - 800137c: 021b lsls r3, r3, #8 - 800137e: 4313 orrs r3, r2 - 8001380: 6083 str r3, [r0, #8] - MODIFY_REG(I2Cx->CR1, I2C_CR1_SMBHEN | I2C_CR1_SMBDEN, PeripheralMode); - 8001382: 6802 ldr r2, [r0, #0] - 8001384: 4b07 ldr r3, [pc, #28] ; (80013a4 ) - 8001386: 401a ands r2, r3 - 8001388: 680b ldr r3, [r1, #0] - 800138a: 431a orrs r2, r3 - 800138c: 6002 str r2, [r0, #0] - * @arg @ref LL_I2C_NACK - * @retval None - */ -__STATIC_INLINE void LL_I2C_AcknowledgeNextData(I2C_TypeDef *I2Cx, uint32_t TypeAcknowledge) -{ - MODIFY_REG(I2Cx->CR2, I2C_CR2_NACK, TypeAcknowledge); - 800138e: 6843 ldr r3, [r0, #4] - 8001390: 694a ldr r2, [r1, #20] - 8001392: 4023 ands r3, r4 - 8001394: 4313 orrs r3, r2 - 8001396: 6043 str r3, [r0, #4] - * - TypeAcknowledge: I2C_CR2_NACK bit - */ - LL_I2C_AcknowledgeNextData(I2Cx, I2C_InitStruct->TypeAcknowledge); - - return SUCCESS; -} - 8001398: 2000 movs r0, #0 - 800139a: bd30 pop {r4, r5, pc} - 800139c: ffffe0ff .word 0xffffe0ff - 80013a0: ffff7fff .word 0xffff7fff - 80013a4: ffcfffff .word 0xffcfffff - -080013a8 : - return ((READ_BIT(LPUARTx->CR1, USART_CR1_UE) == (USART_CR1_UE)) ? 1UL : 0UL); - 80013a8: 6802 ldr r2, [r0, #0] - * @retval An ErrorStatus enumeration value: - * - SUCCESS: LPUART registers are initialized according to LPUART_InitStruct content - * - ERROR: Problem occurred during LPUART Registers initialization - */ -ErrorStatus LL_LPUART_Init(USART_TypeDef *LPUARTx, LL_LPUART_InitTypeDef *LPUART_InitStruct) -{ - 80013aa: b5f8 push {r3, r4, r5, r6, r7, lr} - 80013ac: 2301 movs r3, #1 - 80013ae: 0015 movs r5, r2 - 80013b0: 0004 movs r4, r0 - 80013b2: 000e movs r6, r1 - 80013b4: 401d ands r5, r3 - assert_param(IS_LL_LPUART_DIRECTION(LPUART_InitStruct->TransferDirection)); - assert_param(IS_LL_LPUART_HWCONTROL(LPUART_InitStruct->HardwareFlowControl)); - - /* LPUART needs to be in disabled state, in order to be able to configure some bits in - CRx registers. Otherwise (LPUART not in Disabled state) => return ERROR */ - if (LL_LPUART_IsEnabled(LPUARTx) == 0U) - 80013b6: 421a tst r2, r3 - 80013b8: d001 beq.n 80013be - ErrorStatus status = ERROR; - 80013ba: 2001 movs r0, #1 - } - - } - - return (status); -} - 80013bc: bdf8 pop {r3, r4, r5, r6, r7, pc} - MODIFY_REG(LPUARTx->CR1, - 80013be: 684b ldr r3, [r1, #4] - 80013c0: 68c9 ldr r1, [r1, #12] - 80013c2: 6802 ldr r2, [r0, #0] - 80013c4: 430b orrs r3, r1 - 80013c6: 6931 ldr r1, [r6, #16] - 80013c8: 430b orrs r3, r1 - 80013ca: 4913 ldr r1, [pc, #76] ; (8001418 ) - 80013cc: 400a ands r2, r1 - 80013ce: 4313 orrs r3, r2 - 80013d0: 6003 str r3, [r0, #0] - MODIFY_REG(LPUARTx->CR2, USART_CR2_STOP, StopBits); - 80013d2: 6843 ldr r3, [r0, #4] - 80013d4: 4a11 ldr r2, [pc, #68] ; (800141c ) - 80013d6: 4013 ands r3, r2 - 80013d8: 68b2 ldr r2, [r6, #8] - 80013da: 4313 orrs r3, r2 - 80013dc: 6043 str r3, [r0, #4] - MODIFY_REG(LPUARTx->CR3, USART_CR3_RTSE | USART_CR3_CTSE, HardwareFlowControl); - 80013de: 6883 ldr r3, [r0, #8] - 80013e0: 4a0f ldr r2, [pc, #60] ; (8001420 ) - 80013e2: 4013 ands r3, r2 - 80013e4: 6972 ldr r2, [r6, #20] - 80013e6: 4313 orrs r3, r2 - 80013e8: 6083 str r3, [r0, #8] - periphclk = LL_RCC_GetLPUARTClockFreq(LL_RCC_LPUART1_CLKSOURCE); - 80013ea: 20c0 movs r0, #192 ; 0xc0 - 80013ec: 0100 lsls r0, r0, #4 - 80013ee: f000 f899 bl 8001524 - if ((periphclk != LL_RCC_PERIPH_FREQUENCY_NO) - 80013f2: 2800 cmp r0, #0 - 80013f4: d0e1 beq.n 80013ba - && (LPUART_InitStruct->BaudRate != 0U)) - 80013f6: 6832 ldr r2, [r6, #0] - 80013f8: 2a00 cmp r2, #0 - 80013fa: d0de beq.n 80013ba - LPUARTx->BRR = __LL_LPUART_DIV(PeriphClk, BaudRate); - 80013fc: 0029 movs r1, r5 - 80013fe: 0e07 lsrs r7, r0, #24 - 8001400: 0206 lsls r6, r0, #8 - 8001402: 0850 lsrs r0, r2, #1 - 8001404: 1980 adds r0, r0, r6 - 8001406: 4179 adcs r1, r7 - 8001408: 002b movs r3, r5 - 800140a: f7fe ff09 bl 8000220 <__aeabi_uldivmod> - 800140e: 0300 lsls r0, r0, #12 - 8001410: 0b00 lsrs r0, r0, #12 - 8001412: 60e0 str r0, [r4, #12] - status = SUCCESS; - 8001414: 0028 movs r0, r5 -} - 8001416: e7d1 b.n 80013bc - 8001418: efffe9f3 .word 0xefffe9f3 - 800141c: ffffcfff .word 0xffffcfff - 8001420: fffffcff .word 0xfffffcff - -08001424 : - * @rmtoll CR HSIRDY LL_RCC_HSI_IsReady - * @retval State of bit (1 or 0). - */ -__STATIC_INLINE uint32_t LL_RCC_HSI_IsReady(void) -{ - return ((READ_BIT(RCC->CR, RCC_CR_HSIRDY) == RCC_CR_HSIRDY) ? 1UL : 0UL); - 8001424: 4b02 ldr r3, [pc, #8] ; (8001430 ) - 8001426: 6818 ldr r0, [r3, #0] - 8001428: 0740 lsls r0, r0, #29 - 800142a: 0fc0 lsrs r0, r0, #31 -} - 800142c: 4770 bx lr - 800142e: 46c0 nop ; (mov r8, r8) - 8001430: 40021000 .word 0x40021000 - -08001434 : - * @rmtoll CR HSIDIVF LL_RCC_IsActiveFlag_HSIDIV - * @retval State of bit (1 or 0). - */ -__STATIC_INLINE uint32_t LL_RCC_IsActiveFlag_HSIDIV(void) -{ - return ((READ_BIT(RCC->CR, RCC_CR_HSIDIVF) == RCC_CR_HSIDIVF) ? 1UL : 0UL); - 8001434: 4b02 ldr r3, [pc, #8] ; (8001440 ) - 8001436: 6818 ldr r0, [r3, #0] - 8001438: 06c0 lsls r0, r0, #27 - 800143a: 0fc0 lsrs r0, r0, #31 -} - 800143c: 4770 bx lr - 800143e: 46c0 nop ; (mov r8, r8) - 8001440: 40021000 .word 0x40021000 - -08001444 : - return (uint32_t)(READ_BIT(RCC->CFGR, RCC_CFGR_HPRE)); - 8001444: 4b03 ldr r3, [pc, #12] ; (8001454 ) - * @retval HCLK clock frequency (in Hz) - */ -uint32_t RCC_GetHCLKClockFreq(uint32_t SYSCLK_Frequency) -{ - /* HCLK clock frequency */ - return __LL_RCC_CALC_HCLK_FREQ(SYSCLK_Frequency, LL_RCC_GetAHBPrescaler()); - 8001446: 4a04 ldr r2, [pc, #16] ; (8001458 ) - 8001448: 68db ldr r3, [r3, #12] - 800144a: 061b lsls r3, r3, #24 - 800144c: 0f1b lsrs r3, r3, #28 - 800144e: 5cd3 ldrb r3, [r2, r3] - 8001450: 40d8 lsrs r0, r3 -} - 8001452: 4770 bx lr - 8001454: 40021000 .word 0x40021000 - 8001458: 08001600 .word 0x08001600 - -0800145c : - return (uint32_t)(READ_BIT(RCC->CFGR, RCC_CFGR_PPRE1)); - 800145c: 4b03 ldr r3, [pc, #12] ; (800146c ) - * @retval PCLK1 clock frequency (in Hz) - */ -uint32_t RCC_GetPCLK1ClockFreq(uint32_t HCLK_Frequency) -{ - /* PCLK1 clock frequency */ - return __LL_RCC_CALC_PCLK1_FREQ(HCLK_Frequency, LL_RCC_GetAPB1Prescaler()); - 800145e: 4a04 ldr r2, [pc, #16] ; (8001470 ) - 8001460: 68db ldr r3, [r3, #12] - 8001462: 055b lsls r3, r3, #21 - 8001464: 0f5b lsrs r3, r3, #29 - 8001466: 5cd3 ldrb r3, [r2, r3] - 8001468: 40d8 lsrs r0, r3 -} - 800146a: 4770 bx lr - 800146c: 40021000 .word 0x40021000 - 8001470: 08001610 .word 0x08001610 - -08001474 : -/** - * @brief Return PLL clock frequency used for system domain - * @retval PLL clock frequency (in Hz) - */ -uint32_t RCC_PLL_GetFreqDomain_SYS(void) -{ - 8001474: b510 push {r4, lr} - return (uint32_t)(READ_BIT(RCC->CFGR, RCC_CFGR_PLLSRC)); - 8001476: 4c0e ldr r4, [pc, #56] ; (80014b0 ) - 8001478: 68e3 ldr r3, [r4, #12] - /* PLL_VCO = (HSE_VALUE or HSI_VALUE / PLL divider) * PLL Multiplicator */ - - /* Get PLL source */ - pllsource = LL_RCC_PLL_GetMainSource(); - - switch (pllsource) - 800147a: 03db lsls r3, r3, #15 - 800147c: d415 bmi.n 80014aa - { - case LL_RCC_PLLSOURCE_HSI: /* HSI used as PLL clock source */ - if (LL_RCC_IsActiveFlag_HSIDIV() != 0U) - 800147e: f7ff ffd9 bl 8001434 - { - pllinputfreq = (HSI_VALUE >> 2U); - } - else - { - pllinputfreq = HSI_VALUE; - 8001482: 1e43 subs r3, r0, #1 - 8001484: 4198 sbcs r0, r3 - 8001486: 4b0b ldr r3, [pc, #44] ; (80014b4 ) - 8001488: 4240 negs r0, r0 - 800148a: 4018 ands r0, r3 - 800148c: 4b0a ldr r3, [pc, #40] ; (80014b8 ) - 800148e: 18c0 adds r0, r0, r3 - return (uint32_t)(READ_BIT(RCC->CFGR, RCC_CFGR_PLLMUL)); - 8001490: 68e3 ldr r3, [r4, #12] - - default: /* HSE used as PLL clock source */ - pllinputfreq = HSE_VALUE; - break; - } - return __LL_RCC_CALC_PLLCLK_FREQ(pllinputfreq, LL_RCC_PLL_GetMultiplicator(), LL_RCC_PLL_GetDivider()); - 8001492: 4a0a ldr r2, [pc, #40] ; (80014bc ) - return (uint32_t)(READ_BIT(RCC->CFGR, RCC_CFGR_PLLDIV)); - 8001494: 68e1 ldr r1, [r4, #12] - 8001496: 029b lsls r3, r3, #10 - 8001498: 0f1b lsrs r3, r3, #28 - 800149a: 5cd3 ldrb r3, [r2, r3] - 800149c: 0209 lsls r1, r1, #8 - 800149e: 0f89 lsrs r1, r1, #30 - 80014a0: 4358 muls r0, r3 - 80014a2: 3101 adds r1, #1 - 80014a4: f7fe fe30 bl 8000108 <__udivsi3> -} - 80014a8: bd10 pop {r4, pc} - pllinputfreq = HSE_VALUE; - 80014aa: 4805 ldr r0, [pc, #20] ; (80014c0 ) - 80014ac: e7f0 b.n 8001490 - 80014ae: 46c0 nop ; (mov r8, r8) - 80014b0: 40021000 .word 0x40021000 - 80014b4: ff48e500 .word 0xff48e500 - 80014b8: 00f42400 .word 0x00f42400 - 80014bc: 08001618 .word 0x08001618 - 80014c0: 007a1200 .word 0x007a1200 - -080014c4 : - return (uint32_t)(READ_BIT(RCC->CFGR, RCC_CFGR_SWS)); - 80014c4: 210c movs r1, #12 - 80014c6: 4a13 ldr r2, [pc, #76] ; (8001514 ) -{ - 80014c8: b510 push {r4, lr} - 80014ca: 68d3 ldr r3, [r2, #12] - 80014cc: 400b ands r3, r1 - 80014ce: 0011 movs r1, r2 - switch (LL_RCC_GetSysClkSource()) - 80014d0: 2b08 cmp r3, #8 - 80014d2: d01d beq.n 8001510 - 80014d4: d805 bhi.n 80014e2 - 80014d6: 2b00 cmp r3, #0 - 80014d8: d008 beq.n 80014ec - 80014da: 2b04 cmp r3, #4 - 80014dc: d00e beq.n 80014fc - return (uint32_t)(READ_BIT(RCC->ICSCR, RCC_ICSCR_MSIRANGE)); - 80014de: 684b ldr r3, [r1, #4] - 80014e0: e005 b.n 80014ee - 80014e2: 2b0c cmp r3, #12 - 80014e4: d1fb bne.n 80014de - frequency = RCC_PLL_GetFreqDomain_SYS(); - 80014e6: f7ff ffc5 bl 8001474 - break; - 80014ea: e010 b.n 800150e - 80014ec: 6853 ldr r3, [r2, #4] - frequency = __LL_RCC_CALC_MSI_FREQ(LL_RCC_MSI_GetRange()); - 80014ee: 2080 movs r0, #128 ; 0x80 - 80014f0: 041b lsls r3, r3, #16 - 80014f2: 0f5b lsrs r3, r3, #29 - 80014f4: 3301 adds r3, #1 - 80014f6: 0200 lsls r0, r0, #8 - 80014f8: 4098 lsls r0, r3 - return frequency; - 80014fa: e008 b.n 800150e - if (LL_RCC_IsActiveFlag_HSIDIV() != 0U) - 80014fc: f7ff ff9a bl 8001434 - frequency = HSI_VALUE; - 8001500: 1e43 subs r3, r0, #1 - 8001502: 4198 sbcs r0, r3 - 8001504: 4b04 ldr r3, [pc, #16] ; (8001518 ) - 8001506: 4240 negs r0, r0 - 8001508: 4018 ands r0, r3 - 800150a: 4b04 ldr r3, [pc, #16] ; (800151c ) - 800150c: 18c0 adds r0, r0, r3 -} - 800150e: bd10 pop {r4, pc} - switch (LL_RCC_GetSysClkSource()) - 8001510: 4803 ldr r0, [pc, #12] ; (8001520 ) - 8001512: e7fc b.n 800150e - 8001514: 40021000 .word 0x40021000 - 8001518: ff48e500 .word 0xff48e500 - 800151c: 00f42400 .word 0x00f42400 - 8001520: 007a1200 .word 0x007a1200 - -08001524 : - return (uint32_t)(READ_BIT(RCC->CCIPR, LPUARTx)); - 8001524: 4a17 ldr r2, [pc, #92] ; (8001584 ) -{ - 8001526: b510 push {r4, lr} - 8001528: 6cd3 ldr r3, [r2, #76] ; 0x4c - 800152a: 4018 ands r0, r3 - switch (LL_RCC_GetLPUARTClockSource(LPUARTxSource)) - 800152c: 2380 movs r3, #128 ; 0x80 - 800152e: 011b lsls r3, r3, #4 - 8001530: 4298 cmp r0, r3 - 8001532: d00a beq.n 800154a - 8001534: 23c0 movs r3, #192 ; 0xc0 - 8001536: 011b lsls r3, r3, #4 - 8001538: 4298 cmp r0, r3 - 800153a: d014 beq.n 8001566 - 800153c: 2380 movs r3, #128 ; 0x80 - 800153e: 00db lsls r3, r3, #3 - 8001540: 4298 cmp r0, r3 - 8001542: d115 bne.n 8001570 - lpuart_frequency = RCC_GetSystemClockFreq(); - 8001544: f7ff ffbe bl 80014c4 -} - 8001548: bd10 pop {r4, pc} - if (LL_RCC_HSI_IsReady() != 0U) - 800154a: f7ff ff6b bl 8001424 - 800154e: 2800 cmp r0, #0 - 8001550: d00c beq.n 800156c - if (LL_RCC_IsActiveFlag_HSIDIV() != 0U) - 8001552: f7ff ff6f bl 8001434 - lpuart_frequency = HSI_VALUE; - 8001556: 1e43 subs r3, r0, #1 - 8001558: 4198 sbcs r0, r3 - 800155a: 4b0b ldr r3, [pc, #44] ; (8001588 ) - 800155c: 4240 negs r0, r0 - 800155e: 4018 ands r0, r3 - 8001560: 4b0a ldr r3, [pc, #40] ; (800158c ) - 8001562: 18c0 adds r0, r0, r3 - 8001564: e7f0 b.n 8001548 - return ((READ_BIT(RCC->CSR, RCC_CSR_LSERDY) == RCC_CSR_LSERDY) ? 1UL : 0UL); - 8001566: 6d13 ldr r3, [r2, #80] ; 0x50 - 8001568: 059b lsls r3, r3, #22 - 800156a: d408 bmi.n 800157e - uint32_t lpuart_frequency = LL_RCC_PERIPH_FREQUENCY_NO; - 800156c: 2000 movs r0, #0 - 800156e: e7eb b.n 8001548 - lpuart_frequency = RCC_GetPCLK1ClockFreq(RCC_GetHCLKClockFreq(RCC_GetSystemClockFreq())); - 8001570: f7ff ffa8 bl 80014c4 - 8001574: f7ff ff66 bl 8001444 - 8001578: f7ff ff70 bl 800145c - break; - 800157c: e7e4 b.n 8001548 - lpuart_frequency = LSE_VALUE; - 800157e: 2080 movs r0, #128 ; 0x80 - 8001580: 0200 lsls r0, r0, #8 - return lpuart_frequency; - 8001582: e7e1 b.n 8001548 - 8001584: 40021000 .word 0x40021000 - 8001588: ff48e500 .word 0xff48e500 - 800158c: 00f42400 .word 0x00f42400 - -08001590 <__libc_init_array>: - 8001590: b570 push {r4, r5, r6, lr} - 8001592: 2600 movs r6, #0 - 8001594: 4d0c ldr r5, [pc, #48] ; (80015c8 <__libc_init_array+0x38>) - 8001596: 4c0d ldr r4, [pc, #52] ; (80015cc <__libc_init_array+0x3c>) - 8001598: 1b64 subs r4, r4, r5 - 800159a: 10a4 asrs r4, r4, #2 - 800159c: 42a6 cmp r6, r4 - 800159e: d109 bne.n 80015b4 <__libc_init_array+0x24> - 80015a0: 2600 movs r6, #0 - 80015a2: f000 f821 bl 80015e8 <_init> - 80015a6: 4d0a ldr r5, [pc, #40] ; (80015d0 <__libc_init_array+0x40>) - 80015a8: 4c0a ldr r4, [pc, #40] ; (80015d4 <__libc_init_array+0x44>) - 80015aa: 1b64 subs r4, r4, r5 - 80015ac: 10a4 asrs r4, r4, #2 - 80015ae: 42a6 cmp r6, r4 - 80015b0: d105 bne.n 80015be <__libc_init_array+0x2e> - 80015b2: bd70 pop {r4, r5, r6, pc} - 80015b4: 00b3 lsls r3, r6, #2 - 80015b6: 58eb ldr r3, [r5, r3] - 80015b8: 4798 blx r3 - 80015ba: 3601 adds r6, #1 - 80015bc: e7ee b.n 800159c <__libc_init_array+0xc> - 80015be: 00b3 lsls r3, r6, #2 - 80015c0: 58eb ldr r3, [r5, r3] - 80015c2: 4798 blx r3 - 80015c4: 3601 adds r6, #1 - 80015c6: e7f2 b.n 80015ae <__libc_init_array+0x1e> - 80015c8: 0800162c .word 0x0800162c - 80015cc: 0800162c .word 0x0800162c - 80015d0: 0800162c .word 0x0800162c - 80015d4: 08001630 .word 0x08001630 - -080015d8 : - 80015d8: 0003 movs r3, r0 - 80015da: 1882 adds r2, r0, r2 - 80015dc: 4293 cmp r3, r2 - 80015de: d100 bne.n 80015e2 - 80015e0: 4770 bx lr - 80015e2: 7019 strb r1, [r3, #0] - 80015e4: 3301 adds r3, #1 - 80015e6: e7f9 b.n 80015dc - -080015e8 <_init>: - 80015e8: b5f8 push {r3, r4, r5, r6, r7, lr} - 80015ea: 46c0 nop ; (mov r8, r8) - 80015ec: bcf8 pop {r3, r4, r5, r6, r7} - 80015ee: bc08 pop {r3} - 80015f0: 469e mov lr, r3 - 80015f2: 4770 bx lr - -080015f4 <_fini>: - 80015f4: b5f8 push {r3, r4, r5, r6, r7, lr} - 80015f6: 46c0 nop ; (mov r8, r8) - 80015f8: bcf8 pop {r3, r4, r5, r6, r7} - 80015fa: bc08 pop {r3} - 80015fc: 469e mov lr, r3 - 80015fe: 4770 bx lr diff --git a/fw/Debug/iaq_wired_sensor.map b/fw/Debug/iaq_wired_sensor.map deleted file mode 100644 index 37ea287..0000000 --- a/fw/Debug/iaq_wired_sensor.map +++ /dev/null @@ -1,3631 +0,0 @@ -Archive member included to satisfy reference by file (symbol) - -/opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-errno.o) - Core/Src/syscalls.o (__errno) -/opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-exit.o) - /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o (exit) -/opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-impure.o) - /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-exit.o) (_global_impure_ptr) -/opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-init.o) - /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o (__libc_init_array) -/opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-memset.o) - /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o (memset) -/opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_thumb1_case_uqi.o) - Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o (__gnu_thumb1_case_uqi) -/opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o) - Core/Src/system_stm32l0xx.o (__aeabi_uidiv) -/opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_divsi3.o) - Core/Src/system_stm32l0xx.o (__aeabi_idiv) -/opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_dvmd_tls.o) - /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o) (__aeabi_idiv0) -/opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_aeabi_ldivmod.o) - Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o (__aeabi_ldivmod) -/opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_aeabi_uldivmod.o) - Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o (__aeabi_uldivmod) -/opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_muldi3.o) - Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o (__aeabi_lmul) -/opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_udivmoddi4.o) - /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_aeabi_uldivmod.o) (__udivmoddi4) -/opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(bpabi.o) - /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_aeabi_ldivmod.o) (__gnu_ldivmod_helper) -/opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_clzdi2.o) - /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_udivmoddi4.o) (__clzdi2) -/opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_divdi3.o) - /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(bpabi.o) (__divdi3) -/opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_clzsi2.o) - /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_clzdi2.o) (__clzsi2) - -Allocating common symbols -Common symbol size file - -uwTick 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o -pFlash 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - -Discarded input sections - - .text 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crti.o - .data 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crti.o - .bss 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crti.o - .data 0x0000000000000000 0x4 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtbegin.o - .text 0x0000000000000000 0x80 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o - .data 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o - .bss 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o - .ARM.extab 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o - .ARM.exidx 0x0000000000000000 0x10 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o - .ARM.attributes - 0x0000000000000000 0x1b /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/main.o - .text 0x0000000000000000 0x0 Core/Src/main.o - .data 0x0000000000000000 0x0 Core/Src/main.o - .bss 0x0000000000000000 0x0 Core/Src/main.o - .text.Error_Handler - 0x0000000000000000 0x4 Core/Src/main.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_hal_msp.o - .text 0x0000000000000000 0x0 Core/Src/stm32l0xx_hal_msp.o - .data 0x0000000000000000 0x0 Core/Src/stm32l0xx_hal_msp.o - .bss 0x0000000000000000 0x0 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0xa8a Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x119 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x2e Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x28 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x22 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x8e Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x51 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x103 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x6a Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x1df Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x1c Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x22 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0xb5 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x3ad Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x7b9c Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x3c Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x352b Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x174 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x5b Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x899 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x42e Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x182 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x13f Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0xf1 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x28e Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x28 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x129 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x244 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x22c Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x5b Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0xa5 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x187 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x16 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x11c Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x285 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x246 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x229 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x3b4 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x13d Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x12d Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x109 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0xa7 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x16 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x2a Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0xdb Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x0000000000000000 0x28 Core/Src/stm32l0xx_hal_msp.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/stm32l0xx_it.o - .text 0x0000000000000000 0x0 Core/Src/stm32l0xx_it.o - .data 0x0000000000000000 0x0 Core/Src/stm32l0xx_it.o - .bss 0x0000000000000000 0x0 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0xa8a Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x119 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x2e Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x28 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x22 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x8e Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x51 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x103 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x6a Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x1df Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x1c Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x22 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0xb5 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x3ad Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x7b9c Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x3c Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x352b Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x174 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x5b Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x899 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x42e Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x182 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x13f Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0xf1 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x28e Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x28 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x129 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x244 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x22c Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x5b Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0xa5 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x187 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x16 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x11c Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x285 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x246 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x229 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x3b4 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x13d Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x12d Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x109 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0xa7 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x16 Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x2a Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0xdb Core/Src/stm32l0xx_it.o - .debug_macro 0x0000000000000000 0x28 Core/Src/stm32l0xx_it.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/syscalls.o - .text 0x0000000000000000 0x0 Core/Src/syscalls.o - .data 0x0000000000000000 0x0 Core/Src/syscalls.o - .bss 0x0000000000000000 0x0 Core/Src/syscalls.o - .text.initialise_monitor_handles - 0x0000000000000000 0x2 Core/Src/syscalls.o - .text._getpid 0x0000000000000000 0x4 Core/Src/syscalls.o - .text._kill 0x0000000000000000 0x10 Core/Src/syscalls.o - .text._exit 0x0000000000000000 0xc Core/Src/syscalls.o - .text._read 0x0000000000000000 0x1a Core/Src/syscalls.o - .text._write 0x0000000000000000 0x1a Core/Src/syscalls.o - .text._close 0x0000000000000000 0x6 Core/Src/syscalls.o - .text._fstat 0x0000000000000000 0xa Core/Src/syscalls.o - .text._isatty 0x0000000000000000 0x4 Core/Src/syscalls.o - .text._lseek 0x0000000000000000 0x4 Core/Src/syscalls.o - .text._open 0x0000000000000000 0xa Core/Src/syscalls.o - .text._wait 0x0000000000000000 0x10 Core/Src/syscalls.o - .text._unlink 0x0000000000000000 0x10 Core/Src/syscalls.o - .text._times 0x0000000000000000 0x6 Core/Src/syscalls.o - .text._stat 0x0000000000000000 0xa Core/Src/syscalls.o - .text._link 0x0000000000000000 0x10 Core/Src/syscalls.o - .text._fork 0x0000000000000000 0x10 Core/Src/syscalls.o - .text._execve 0x0000000000000000 0x10 Core/Src/syscalls.o - .bss.__env 0x0000000000000000 0x4 Core/Src/syscalls.o - .data.environ 0x0000000000000000 0x4 Core/Src/syscalls.o - .debug_info 0x0000000000000000 0x10e8 Core/Src/syscalls.o - .debug_abbrev 0x0000000000000000 0x2fe Core/Src/syscalls.o - .debug_loc 0x0000000000000000 0x491 Core/Src/syscalls.o - .debug_aranges - 0x0000000000000000 0xa8 Core/Src/syscalls.o - .debug_ranges 0x0000000000000000 0xb0 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x24c Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0xa8a Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x22 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x4c Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x18 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x94 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x3c Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x34 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x57 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x174 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x339 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x16 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x43 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x34 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x10 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x58 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x71 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x1c Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x12a Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x10 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x35 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x10 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x10 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x10 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x6a Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x1c Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x52 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x22 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x10 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x40 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0xd5 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x1c Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x3d Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x35 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x12c Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x16 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x16 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x29 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x10 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x241 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x1c Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x10 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x10 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x16 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x145 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x189 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0x16 Core/Src/syscalls.o - .debug_macro 0x0000000000000000 0xce Core/Src/syscalls.o - .debug_line 0x0000000000000000 0x8a5 Core/Src/syscalls.o - .debug_str 0x0000000000000000 0x8e55 Core/Src/syscalls.o - .comment 0x0000000000000000 0x54 Core/Src/syscalls.o - .debug_frame 0x0000000000000000 0x184 Core/Src/syscalls.o - .ARM.attributes - 0x0000000000000000 0x2c Core/Src/syscalls.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/sysmem.o - .text 0x0000000000000000 0x0 Core/Src/sysmem.o - .data 0x0000000000000000 0x0 Core/Src/sysmem.o - .bss 0x0000000000000000 0x0 Core/Src/sysmem.o - .text._sbrk 0x0000000000000000 0x40 Core/Src/sysmem.o - .bss.__sbrk_heap_end - 0x0000000000000000 0x4 Core/Src/sysmem.o - .debug_info 0x0000000000000000 0xa4e Core/Src/sysmem.o - .debug_abbrev 0x0000000000000000 0x1f4 Core/Src/sysmem.o - .debug_loc 0x0000000000000000 0x69 Core/Src/sysmem.o - .debug_aranges - 0x0000000000000000 0x20 Core/Src/sysmem.o - .debug_ranges 0x0000000000000000 0x10 Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0xff Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0xa8a Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0x10 Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0x22 Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0x4c Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0x18 Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0x94 Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0x3c Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0x34 Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0x174 Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0x16 Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0x43 Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0x57 Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0x34 Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0x10 Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0x58 Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0x71 Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0x1c Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0x12a Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0x23b Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0x103 Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0x6a Core/Src/sysmem.o - .debug_macro 0x0000000000000000 0x1df Core/Src/sysmem.o - .debug_line 0x0000000000000000 0x4f9 Core/Src/sysmem.o - .debug_str 0x0000000000000000 0x6204 Core/Src/sysmem.o - .comment 0x0000000000000000 0x54 Core/Src/sysmem.o - .debug_frame 0x0000000000000000 0x28 Core/Src/sysmem.o - .ARM.attributes - 0x0000000000000000 0x2c Core/Src/sysmem.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .group 0x0000000000000000 0xc Core/Src/system_stm32l0xx.o - .text 0x0000000000000000 0x0 Core/Src/system_stm32l0xx.o - .data 0x0000000000000000 0x0 Core/Src/system_stm32l0xx.o - .bss 0x0000000000000000 0x0 Core/Src/system_stm32l0xx.o - .text.SystemCoreClockUpdate - 0x0000000000000000 0x9c Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0xa8a Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x2e Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x28 Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x22 Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x8e Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x51 Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x103 Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x6a Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x1df Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x1c Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x22 Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0xb5 Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x3ad Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x7b9c Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x3c Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x119 Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x352b Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x174 Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x5b Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x899 Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x42e Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x182 Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x13f Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0xf1 Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x28e Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x28 Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x129 Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x244 Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x22c Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x5b Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0xa5 Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x187 Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x16 Core/Src/system_stm32l0xx.o - .debug_macro 0x0000000000000000 0x11c Core/Src/system_stm32l0xx.o - .text 0x0000000000000000 0x14 Core/Startup/startup_stm32l011f4ux.o - .data 0x0000000000000000 0x0 Core/Startup/startup_stm32l011f4ux.o - .bss 0x0000000000000000 0x0 Core/Startup/startup_stm32l011f4ux.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_MspInit - 0x0000000000000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_MspDeInit - 0x0000000000000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_DeInit - 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_GetTickPrio - 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_SetTickFreq - 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_GetTickFreq - 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_SuspendTick - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_ResumeTick - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_GetHalVersion - 0x0000000000000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_GetREVID - 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_GetDEVID - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_GetUIDw0 - 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_GetUIDw1 - 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_GetUIDw2 - 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_DBGMCU_EnableDBGSleepMode - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_DBGMCU_DisableDBGSleepMode - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_DBGMCU_EnableDBGStopMode - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_DBGMCU_DisableDBGStopMode - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_DBGMCU_EnableDBGStandbyMode - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_DBGMCU_DisableDBGStandbyMode - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_DBGMCU_DBG_EnableLowPowerConfig - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_DBGMCU_DBG_DisableLowPowerConfig - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_SYSCFG_GetBootMode - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_SYSCFG_VREFINT_OutputSelect - 0x0000000000000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_SYSCFG_Enable_Lock_VREFINT - 0x0000000000000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_SYSCFG_Disable_Lock_VREFINT - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text.HAL_NVIC_EnableIRQ - 0x0000000000000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text.HAL_NVIC_DisableIRQ - 0x0000000000000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text.HAL_NVIC_SystemReset - 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text.HAL_NVIC_GetPriority - 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text.HAL_NVIC_SetPendingIRQ - 0x0000000000000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text.HAL_NVIC_GetPendingIRQ - 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text.HAL_NVIC_ClearPendingIRQ - 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text.HAL_SYSTICK_CLKSourceConfig - 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text.HAL_SYSTICK_Callback - 0x0000000000000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text.HAL_SYSTICK_IRQHandler - 0x0000000000000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_Init - 0x0000000000000000 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_DeInit - 0x0000000000000000 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_Start - 0x0000000000000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_Start_IT - 0x0000000000000000 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_Abort - 0x0000000000000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_Abort_IT - 0x0000000000000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_PollForTransfer - 0x0000000000000000 0xc4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_IRQHandler - 0x0000000000000000 0x96 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_RegisterCallback - 0x0000000000000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_UnRegisterCallback - 0x0000000000000000 0x4e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_GetState - 0x0000000000000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_GetError - 0x0000000000000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_info 0x0000000000000000 0x962 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_abbrev 0x0000000000000000 0x23f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_loc 0x0000000000000000 0x853 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_aranges - 0x0000000000000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_ranges 0x0000000000000000 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x197 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_line 0x0000000000000000 0xeed Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_str 0x0000000000000000 0x5ac2d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .comment 0x0000000000000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_frame 0x0000000000000000 0x164 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .ARM.attributes - 0x0000000000000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .text.HAL_EXTI_SetConfigLine - 0x0000000000000000 0xa4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .text.HAL_EXTI_GetConfigLine - 0x0000000000000000 0x8c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .text.HAL_EXTI_ClearConfigLine - 0x0000000000000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .text.HAL_EXTI_RegisterCallback - 0x0000000000000000 0xe Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .text.HAL_EXTI_GetHandle - 0x0000000000000000 0xe Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .text.HAL_EXTI_IRQHandler - 0x0000000000000000 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .text.HAL_EXTI_GetPending - 0x0000000000000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .text.HAL_EXTI_ClearPending - 0x0000000000000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .text.HAL_EXTI_GenerateSWI - 0x0000000000000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_info 0x0000000000000000 0x6b2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_abbrev 0x0000000000000000 0x210 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_loc 0x0000000000000000 0x3ce Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_aranges - 0x0000000000000000 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_ranges 0x0000000000000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x197 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_line 0x0000000000000000 0xa69 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_str 0x0000000000000000 0x5a9fd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .comment 0x0000000000000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .debug_frame 0x0000000000000000 0xd0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .ARM.attributes - 0x0000000000000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.FLASH_SetErrorCode - 0x0000000000000000 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_Program_IT - 0x0000000000000000 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_EndOfOperationCallback - 0x0000000000000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_OperationErrorCallback - 0x0000000000000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_IRQHandler - 0x0000000000000000 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_Unlock - 0x0000000000000000 0x68 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_Lock - 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_OB_Unlock - 0x0000000000000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_OB_Lock - 0x0000000000000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_GetError - 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.FLASH_WaitForLastOperation - 0x0000000000000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_Program - 0x0000000000000000 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_OB_Launch - 0x0000000000000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_info 0x0000000000000000 0x7a9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_abbrev 0x0000000000000000 0x32d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_loc 0x0000000000000000 0x2f6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_aranges - 0x0000000000000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_ranges 0x0000000000000000 0x68 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x198 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_line 0x0000000000000000 0xc3e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_str 0x0000000000000000 0x5aab3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .comment 0x0000000000000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_frame 0x0000000000000000 0x12c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .ARM.attributes - 0x0000000000000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - COMMON 0x0000000000000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.FLASH_OB_ProtectedSectorsConfig - 0x0000000000000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_OBProgram - 0x0000000000000000 0x114 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_OBGetConfig - 0x0000000000000000 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_AdvOBProgram - 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_AdvOBGetConfig - 0x0000000000000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_OB_SelectPCROP - 0x0000000000000000 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_OB_DeSelectPCROP - 0x0000000000000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_DATAEEPROM_Unlock - 0x0000000000000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_DATAEEPROM_Lock - 0x0000000000000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_DATAEEPROM_Erase - 0x0000000000000000 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_DATAEEPROM_Program - 0x0000000000000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_DATAEEPROM_EnableFixedTimeProgram - 0x0000000000000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_DATAEEPROM_DisableFixedTimeProgram - 0x0000000000000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.FLASH_PageErase - 0x0000000000000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_Erase - 0x0000000000000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_Erase_IT - 0x0000000000000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_info 0x0000000000000000 0xeeb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_abbrev 0x0000000000000000 0x334 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_loc 0x0000000000000000 0xb91 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_aranges - 0x0000000000000000 0x98 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_ranges 0x0000000000000000 0x108 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x197 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_line 0x0000000000000000 0xf45 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_str 0x0000000000000000 0x5ad91 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .comment 0x0000000000000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_frame 0x0000000000000000 0x18c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .ARM.attributes - 0x0000000000000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .RamFunc 0x0000000000000000 0x1b4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_info 0x0000000000000000 0x4a6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_abbrev 0x0000000000000000 0x1e2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_loc 0x0000000000000000 0x18e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_aranges - 0x0000000000000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_ranges 0x0000000000000000 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x197 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_line 0x0000000000000000 0x890 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_str 0x0000000000000000 0x5a9e2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .comment 0x0000000000000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_frame 0x0000000000000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .ARM.attributes - 0x0000000000000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .text.HAL_GPIO_Init - 0x0000000000000000 0x150 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .text.HAL_GPIO_DeInit - 0x0000000000000000 0xd0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .text.HAL_GPIO_ReadPin - 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .text.HAL_GPIO_WritePin - 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .text.HAL_GPIO_TogglePin - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .text.HAL_GPIO_LockPin - 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .text.HAL_GPIO_EXTI_Callback - 0x0000000000000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .text.HAL_GPIO_EXTI_IRQHandler - 0x0000000000000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_info 0x0000000000000000 0x7cd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_abbrev 0x0000000000000000 0x205 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_loc 0x0000000000000000 0x3c6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_aranges - 0x0000000000000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_ranges 0x0000000000000000 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x1cf Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_line 0x0000000000000000 0xb06 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_str 0x0000000000000000 0x5ab14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .comment 0x0000000000000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_frame 0x0000000000000000 0xbc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .ARM.attributes - 0x0000000000000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_Flush_TXDR - 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_TransferConfig - 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_Enable_IRQ - 0x0000000000000000 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_Disable_IRQ - 0x0000000000000000 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_ConvertOtherXferOptions - 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_IsAcknowledgeFailed - 0x0000000000000000 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_WaitOnRXNEFlagUntilTimeout - 0x0000000000000000 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_WaitOnSTOPFlagUntilTimeout - 0x0000000000000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_WaitOnFlagUntilTimeout - 0x0000000000000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_WaitOnTXISFlagUntilTimeout - 0x0000000000000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_RequestMemoryWrite - 0x0000000000000000 0x68 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_RequestMemoryRead - 0x0000000000000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_MspInit - 0x0000000000000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Init - 0x0000000000000000 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_MspDeInit - 0x0000000000000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_DeInit - 0x0000000000000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Master_Transmit - 0x0000000000000000 0x124 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Master_Receive - 0x0000000000000000 0x124 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Slave_Transmit - 0x0000000000000000 0x150 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Slave_Receive - 0x0000000000000000 0x154 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Master_Transmit_IT - 0x0000000000000000 0x98 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Master_Receive_IT - 0x0000000000000000 0x98 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Slave_Transmit_IT - 0x0000000000000000 0x5c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Slave_Receive_IT - 0x0000000000000000 0x5c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Master_Transmit_DMA - 0x0000000000000000 0x13c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Master_Receive_DMA - 0x0000000000000000 0x13c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Slave_Transmit_DMA - 0x0000000000000000 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Slave_Receive_DMA - 0x0000000000000000 0xe4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Mem_Write - 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Mem_Read - 0x0000000000000000 0x188 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Mem_Write_IT - 0x0000000000000000 0xdc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Mem_Read_IT - 0x0000000000000000 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Mem_Write_DMA - 0x0000000000000000 0x150 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Mem_Read_DMA - 0x0000000000000000 0x154 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_IsDeviceReady - 0x0000000000000000 0x148 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Master_Seq_Transmit_IT - 0x0000000000000000 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Master_Seq_Transmit_DMA - 0x0000000000000000 0x154 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Master_Seq_Receive_IT - 0x0000000000000000 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Master_Seq_Receive_DMA - 0x0000000000000000 0x154 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Slave_Seq_Transmit_IT - 0x0000000000000000 0xd4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Slave_Seq_Transmit_DMA - 0x0000000000000000 0x180 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Slave_Seq_Receive_IT - 0x0000000000000000 0xdc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Slave_Seq_Receive_DMA - 0x0000000000000000 0x188 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_EnableListen_IT - 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_DisableListen_IT - 0x0000000000000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Master_Abort_IT - 0x0000000000000000 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_EV_IRQHandler - 0x0000000000000000 0x12 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_MasterTxCpltCallback - 0x0000000000000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_MasterRxCpltCallback - 0x0000000000000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_ITMasterSeqCplt - 0x0000000000000000 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_SlaveTxCpltCallback - 0x0000000000000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_SlaveRxCpltCallback - 0x0000000000000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_ITSlaveSeqCplt - 0x0000000000000000 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_DMASlaveTransmitCplt - 0x0000000000000000 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_DMASlaveReceiveCplt - 0x0000000000000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_AddrCallback - 0x0000000000000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_ITAddrCplt.isra.0 - 0x0000000000000000 0x9a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_ListenCpltCallback - 0x0000000000000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_ITListenCplt - 0x0000000000000000 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_MemTxCpltCallback - 0x0000000000000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_MemRxCpltCallback - 0x0000000000000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_ErrorCallback - 0x0000000000000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_AbortCpltCallback - 0x0000000000000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_TreatErrorCallback - 0x0000000000000000 0x2a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_ITError - 0x0000000000000000 0xf4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_ITSlaveCplt - 0x0000000000000000 0x138 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_Slave_ISR_IT - 0x0000000000000000 0x130 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_ITMasterCplt - 0x0000000000000000 0xe4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_Master_ISR_IT - 0x0000000000000000 0x140 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_Slave_ISR_DMA - 0x0000000000000000 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_Master_ISR_DMA - 0x0000000000000000 0x120 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_DMAError - 0x0000000000000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_DMAMasterTransmitCplt - 0x0000000000000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_DMAMasterReceiveCplt - 0x0000000000000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_ER_IRQHandler - 0x0000000000000000 0x62 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_DMAAbort - 0x0000000000000000 0x1e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_GetState - 0x0000000000000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_GetMode - 0x0000000000000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_GetError - 0x0000000000000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_info 0x0000000000000000 0x3f91 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_abbrev 0x0000000000000000 0x3a9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_loc 0x0000000000000000 0x405b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_aranges - 0x0000000000000000 0x240 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_ranges 0x0000000000000000 0x2a8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x25c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_line 0x0000000000000000 0x511e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_str 0x0000000000000000 0x5bb19 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .comment 0x0000000000000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_frame 0x0000000000000000 0x884 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .ARM.attributes - 0x0000000000000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .text.HAL_I2CEx_ConfigAnalogFilter - 0x0000000000000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .text.HAL_I2CEx_ConfigDigitalFilter - 0x0000000000000000 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .text.HAL_I2CEx_EnableWakeUp - 0x0000000000000000 0x42 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .text.HAL_I2CEx_DisableWakeUp - 0x0000000000000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .text.HAL_I2CEx_EnableFastModePlus - 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .text.HAL_I2CEx_DisableFastModePlus - 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_info 0x0000000000000000 0x9e2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_abbrev 0x0000000000000000 0x1da Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_loc 0x0000000000000000 0x1b0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_aranges - 0x0000000000000000 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_ranges 0x0000000000000000 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x197 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_line 0x0000000000000000 0x9b2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_str 0x0000000000000000 0x5ae1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .comment 0x0000000000000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_frame 0x0000000000000000 0xa8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .ARM.attributes - 0x0000000000000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_DeInit - 0x0000000000000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_EnableBkUpAccess - 0x0000000000000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_DisableBkUpAccess - 0x0000000000000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_ConfigPVD - 0x0000000000000000 0x74 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_EnablePVD - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_DisablePVD - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_EnableWakeUpPin - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_DisableWakeUpPin - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_EnterSLEEPMode - 0x0000000000000000 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_EnterSTOPMode - 0x0000000000000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_EnterSTANDBYMode - 0x0000000000000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_EnableSleepOnExit - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_DisableSleepOnExit - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_EnableSEVOnPend - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_DisableSEVOnPend - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_PVDCallback - 0x0000000000000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_PVD_IRQHandler - 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_info 0x0000000000000000 0x73f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_abbrev 0x0000000000000000 0x1b5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_loc 0x0000000000000000 0x1f9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_aranges - 0x0000000000000000 0xa0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_ranges 0x0000000000000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x1af Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_line 0x0000000000000000 0x9a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_str 0x0000000000000000 0x5ab32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .comment 0x0000000000000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_frame 0x0000000000000000 0x14c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .ARM.attributes - 0x0000000000000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .text.HAL_PWREx_GetVoltageRange - 0x0000000000000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .text.HAL_PWREx_EnableFastWakeUp - 0x0000000000000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .text.HAL_PWREx_DisableFastWakeUp - 0x0000000000000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .text.HAL_PWREx_EnableUltraLowPower - 0x0000000000000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .text.HAL_PWREx_DisableUltraLowPower - 0x0000000000000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .text.HAL_PWREx_EnableLowPowerRunMode - 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .text.HAL_PWREx_DisableLowPowerRunMode - 0x0000000000000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_info 0x0000000000000000 0x27f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_abbrev 0x0000000000000000 0x135 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_loc 0x0000000000000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_aranges - 0x0000000000000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_ranges 0x0000000000000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x19d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_line 0x0000000000000000 0x78a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_str 0x0000000000000000 0x5a8f2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .comment 0x0000000000000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_frame 0x0000000000000000 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .ARM.attributes - 0x0000000000000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .text.HAL_RCC_DeInit - 0x0000000000000000 0xdc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .text.HAL_RCC_MCOConfig - 0x0000000000000000 0x74 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .text.HAL_RCC_GetHCLKFreq - 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .text.HAL_RCC_GetPCLK1Freq - 0x0000000000000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .text.HAL_RCC_GetPCLK2Freq - 0x0000000000000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .text.HAL_RCC_GetOscConfig - 0x0000000000000000 0xa4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .text.HAL_RCC_GetClockConfig - 0x0000000000000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_GetPeriphCLKConfig - 0x0000000000000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_GetPeriphCLKFreq - 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_EnableLSECSS - 0x0000000000000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_DisableLSECSS - 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_EnableLSECSS_IT - 0x0000000000000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_LSECSS_Callback - 0x0000000000000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_LSECSS_IRQHandler - 0x0000000000000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_info 0x0000000000000000 0x172 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_abbrev 0x0000000000000000 0x9a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_aranges - 0x0000000000000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x198 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_line 0x0000000000000000 0x65b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_str 0x0000000000000000 0x5a7ae Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .comment 0x0000000000000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .ARM.attributes - 0x0000000000000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_info 0x0000000000000000 0x172 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_abbrev 0x0000000000000000 0x9a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_aranges - 0x0000000000000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x197 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_line 0x0000000000000000 0x65e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_str 0x0000000000000000 0x5a7b1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .comment 0x0000000000000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .ARM.attributes - 0x0000000000000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .text.LL_DMA_DeInit - 0x0000000000000000 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .text.LL_DMA_Init - 0x0000000000000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .text.LL_DMA_StructInit - 0x0000000000000000 0x1a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .rodata.CHANNEL_OFFSET_TAB - 0x0000000000000000 0x5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_info 0x0000000000000000 0x96b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_abbrev 0x0000000000000000 0x2a9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_loc 0x0000000000000000 0x3f7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_aranges - 0x0000000000000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_ranges 0x0000000000000000 0x128 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x1f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0x27f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_macro 0x0000000000000000 0xa7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_line 0x0000000000000000 0x9f0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_str 0x0000000000000000 0x5c727 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .comment 0x0000000000000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .debug_frame 0x0000000000000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .ARM.attributes - 0x0000000000000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .text.LL_EXTI_DeInit - 0x0000000000000000 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .text.LL_EXTI_Init - 0x0000000000000000 0xa0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .text.LL_EXTI_StructInit - 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_info 0x0000000000000000 0x559 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_abbrev 0x0000000000000000 0x1f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_loc 0x0000000000000000 0x12c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_aranges - 0x0000000000000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_ranges 0x0000000000000000 0x68 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x1be Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_line 0x0000000000000000 0x851 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_str 0x0000000000000000 0x5b018 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .comment 0x0000000000000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .debug_frame 0x0000000000000000 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .ARM.attributes - 0x0000000000000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .text.LL_GPIO_DeInit - 0x0000000000000000 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .text.LL_GPIO_StructInit - 0x0000000000000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000000000 0xa7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .text.LL_I2C_DeInit - 0x0000000000000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .text.LL_I2C_StructInit - 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000000000 0xa7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .text.LL_LPUART_DeInit - 0x0000000000000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .text.LL_LPUART_StructInit - 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0x3b4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000000000 0xa7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .text.LL_RCC_DeInit - 0x0000000000000000 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .text.RCC_GetPCLK2ClockFreq - 0x0000000000000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .text.LL_RCC_GetSystemClocksFreq - 0x0000000000000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .text.LL_RCC_GetUSARTClockFreq - 0x0000000000000000 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .text.LL_RCC_GetI2CClockFreq - 0x0000000000000000 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .text.LL_RCC_GetLPTIMClockFreq - 0x0000000000000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .group 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .text 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .data 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .bss 0x0000000000000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .text.LL_Init1msTick - 0x0000000000000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .text.LL_mDelay - 0x0000000000000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .text.LL_SetSystemCoreClock - 0x0000000000000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .text.LL_SetFlashLatency - 0x0000000000000000 0x74 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .text.UTILS_EnablePLLAndSwitchSystem - 0x0000000000000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .text.LL_PLL_ConfigSystemClock_HSI - 0x0000000000000000 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .text.LL_PLL_ConfigSystemClock_HSE - 0x0000000000000000 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_info 0x0000000000000000 0xce9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_abbrev 0x0000000000000000 0x391 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_loc 0x0000000000000000 0x743 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_aranges - 0x0000000000000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_ranges 0x0000000000000000 0x2c0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x23f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0xa8a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x8e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x51 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0xb5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x3ad Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x7b9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x119 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x352b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x899 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x42e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0xf1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x28e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x129 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x244 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0xa5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x3ae Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x2a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0x13d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_macro 0x0000000000000000 0xdb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_line 0x0000000000000000 0xd70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_str 0x0000000000000000 0x5dd57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .comment 0x0000000000000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .debug_frame 0x0000000000000000 0xc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .ARM.attributes - 0x0000000000000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o - .text 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-errno.o) - .data 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-errno.o) - .bss 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-errno.o) - .text.__errno 0x0000000000000000 0xc /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-errno.o) - .debug_frame 0x0000000000000000 0x20 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-errno.o) - .ARM.attributes - 0x0000000000000000 0x2c /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-errno.o) - .text 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-exit.o) - .data 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-exit.o) - .bss 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-exit.o) - .text.exit 0x0000000000000000 0x2c /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-exit.o) - .debug_frame 0x0000000000000000 0x28 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-exit.o) - .ARM.attributes - 0x0000000000000000 0x2c /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-exit.o) - .text 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-impure.o) - .data 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-impure.o) - .bss 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-impure.o) - .data._impure_ptr - 0x0000000000000000 0x4 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-impure.o) - .data.impure_data - 0x0000000000000000 0x60 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-impure.o) - .rodata._global_impure_ptr - 0x0000000000000000 0x4 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-impure.o) - .ARM.attributes - 0x0000000000000000 0x2c /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-impure.o) - .text 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-init.o) - .data 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-init.o) - .bss 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-init.o) - .text 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-memset.o) - .data 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-memset.o) - .bss 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-memset.o) - .text 0x0000000000000000 0x14 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_thumb1_case_uqi.o) - .data 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_thumb1_case_uqi.o) - .bss 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_thumb1_case_uqi.o) - .ARM.attributes - 0x0000000000000000 0x1e /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_thumb1_case_uqi.o) - .data 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o) - .bss 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o) - .text 0x0000000000000000 0x1d4 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_divsi3.o) - .data 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_divsi3.o) - .bss 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_divsi3.o) - .debug_frame 0x0000000000000000 0x20 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_divsi3.o) - .ARM.attributes - 0x0000000000000000 0x1e /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_divsi3.o) - .data 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_dvmd_tls.o) - .bss 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_dvmd_tls.o) - .text 0x0000000000000000 0x48 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_aeabi_ldivmod.o) - .data 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_aeabi_ldivmod.o) - .bss 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_aeabi_ldivmod.o) - .ARM.attributes - 0x0000000000000000 0x1e /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_aeabi_ldivmod.o) - .data 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_aeabi_uldivmod.o) - .bss 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_aeabi_uldivmod.o) - .data 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_muldi3.o) - .bss 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_muldi3.o) - .data 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_udivmoddi4.o) - .bss 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_udivmoddi4.o) - .ARM.extab 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_udivmoddi4.o) - .text 0x0000000000000000 0x3c /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(bpabi.o) - .data 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(bpabi.o) - .bss 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(bpabi.o) - .debug_frame 0x0000000000000000 0x38 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(bpabi.o) - .ARM.attributes - 0x0000000000000000 0x2c /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(bpabi.o) - .data 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_clzdi2.o) - .bss 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_clzdi2.o) - .text 0x0000000000000000 0x1cc /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_divdi3.o) - .data 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_divdi3.o) - .bss 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_divdi3.o) - .ARM.extab 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_divdi3.o) - .ARM.exidx 0x0000000000000000 0x8 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_divdi3.o) - .debug_frame 0x0000000000000000 0x3c /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_divdi3.o) - .ARM.attributes - 0x0000000000000000 0x2c /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_divdi3.o) - .data 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_clzsi2.o) - .bss 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_clzsi2.o) - .text 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtend.o - .data 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtend.o - .bss 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtend.o - .eh_frame 0x0000000000000000 0x4 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtend.o - .ARM.attributes - 0x0000000000000000 0x2c /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtend.o - .text 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtn.o - .data 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtn.o - .bss 0x0000000000000000 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtn.o - -Memory Configuration - -Name Origin Length Attributes -RAM 0x0000000020000000 0x0000000000000800 xrw -FLASH 0x0000000008000000 0x0000000000004000 xr -*default* 0x0000000000000000 0xffffffffffffffff - -Linker script and memory map - -LOAD /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crti.o -LOAD /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtbegin.o -LOAD /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o -LOAD Core/Src/main.o -LOAD Core/Src/stm32l0xx_hal_msp.o -LOAD Core/Src/stm32l0xx_it.o -LOAD Core/Src/syscalls.o -LOAD Core/Src/sysmem.o -LOAD Core/Src/system_stm32l0xx.o -LOAD Core/Startup/startup_stm32l011f4ux.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o -START GROUP -LOAD /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a -LOAD /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a -END GROUP -START GROUP -LOAD /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a -LOAD /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a -END GROUP -START GROUP -LOAD /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a -LOAD /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a -LOAD /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libnosys.a -END GROUP -START GROUP -LOAD /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a -LOAD /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a -LOAD /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libnosys.a -END GROUP -LOAD /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtend.o -LOAD /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtn.o - 0x0000000020000800 _estack = (ORIGIN (RAM) + LENGTH (RAM)) - 0x0000000000000200 _Min_Heap_Size = 0x200 - 0x0000000000000400 _Min_Stack_Size = 0x400 - -.isr_vector 0x0000000008000000 0xc0 - 0x0000000008000000 . = ALIGN (0x4) - *(.isr_vector) - .isr_vector 0x0000000008000000 0xc0 Core/Startup/startup_stm32l011f4ux.o - 0x0000000008000000 g_pfnVectors - 0x00000000080000c0 . = ALIGN (0x4) - -.text 0x00000000080000c0 0x1540 - 0x00000000080000c0 . = ALIGN (0x4) - *(.text) - .text 0x00000000080000c0 0x48 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtbegin.o - .text 0x0000000008000108 0x114 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o) - 0x0000000008000108 __udivsi3 - 0x0000000008000108 __aeabi_uidiv - 0x0000000008000214 __aeabi_uidivmod - .text 0x000000000800021c 0x4 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_dvmd_tls.o) - 0x000000000800021c __aeabi_ldiv0 - 0x000000000800021c __aeabi_idiv0 - .text 0x0000000008000220 0x40 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_aeabi_uldivmod.o) - 0x0000000008000220 __aeabi_uldivmod - .text 0x0000000008000260 0x50 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_muldi3.o) - 0x0000000008000260 __aeabi_lmul - 0x0000000008000260 __muldi3 - .text 0x00000000080002b0 0x198 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_udivmoddi4.o) - 0x00000000080002b0 __udivmoddi4 - .text 0x0000000008000448 0x18 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_clzdi2.o) - 0x0000000008000448 __clzdi2 - .text 0x0000000008000460 0x3c /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_clzsi2.o) - 0x0000000008000460 __clzsi2 - *(.text*) - .text.LL_IOP_GRP1_EnableClock - 0x000000000800049c 0x1c Core/Src/main.o - .text.SystemClock_Config - 0x00000000080004b8 0x90 Core/Src/main.o - 0x00000000080004b8 SystemClock_Config - .text.startup.main - 0x0000000008000548 0x310 Core/Src/main.o - 0x0000000008000548 main - .text.HAL_MspInit - 0x0000000008000858 0x1c Core/Src/stm32l0xx_hal_msp.o - 0x0000000008000858 HAL_MspInit - .text.NMI_Handler - 0x0000000008000874 0x2 Core/Src/stm32l0xx_it.o - 0x0000000008000874 NMI_Handler - .text.HardFault_Handler - 0x0000000008000876 0x2 Core/Src/stm32l0xx_it.o - 0x0000000008000876 HardFault_Handler - .text.SVC_Handler - 0x0000000008000878 0x2 Core/Src/stm32l0xx_it.o - 0x0000000008000878 SVC_Handler - .text.PendSV_Handler - 0x000000000800087a 0x2 Core/Src/stm32l0xx_it.o - 0x000000000800087a PendSV_Handler - .text.SysTick_Handler - 0x000000000800087c 0x8 Core/Src/stm32l0xx_it.o - 0x000000000800087c SysTick_Handler - .text.DMA1_Channel2_3_IRQHandler - 0x0000000008000884 0x2 Core/Src/stm32l0xx_it.o - 0x0000000008000884 DMA1_Channel2_3_IRQHandler - .text.SystemInit - 0x0000000008000886 0x2 Core/Src/system_stm32l0xx.o - 0x0000000008000886 SystemInit - .text.Reset_Handler - 0x0000000008000888 0x80 Core/Startup/startup_stm32l011f4ux.o - 0x0000000008000888 Reset_Handler - .text.Default_Handler - 0x0000000008000908 0x2 Core/Startup/startup_stm32l011f4ux.o - 0x0000000008000908 ADC1_COMP_IRQHandler - 0x0000000008000908 PVD_IRQHandler - 0x0000000008000908 I2C1_IRQHandler - 0x0000000008000908 SPI1_IRQHandler - 0x0000000008000908 EXTI2_3_IRQHandler - 0x0000000008000908 RTC_IRQHandler - 0x0000000008000908 EXTI4_15_IRQHandler - 0x0000000008000908 RCC_IRQHandler - 0x0000000008000908 DMA1_Channel1_IRQHandler - 0x0000000008000908 Default_Handler - 0x0000000008000908 DMA1_Channel4_5_IRQHandler - 0x0000000008000908 EXTI0_1_IRQHandler - 0x0000000008000908 TIM21_IRQHandler - 0x0000000008000908 WWDG_IRQHandler - 0x0000000008000908 LPUART1_IRQHandler - 0x0000000008000908 TIM2_IRQHandler - 0x0000000008000908 USART2_IRQHandler - 0x0000000008000908 FLASH_IRQHandler - 0x0000000008000908 LPTIM1_IRQHandler - *fill* 0x000000000800090a 0x2 - .text.HAL_InitTick - 0x000000000800090c 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x000000000800090c HAL_InitTick - .text.HAL_Init - 0x0000000008000954 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x0000000008000954 HAL_Init - .text.HAL_IncTick - 0x000000000800097c 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x000000000800097c HAL_IncTick - .text.HAL_GetTick - 0x0000000008000994 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x0000000008000994 HAL_GetTick - .text.HAL_Delay - 0x00000000080009a0 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x00000000080009a0 HAL_Delay - .text.HAL_NVIC_SetPriority - 0x00000000080009c4 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x00000000080009c4 HAL_NVIC_SetPriority - .text.HAL_SYSTICK_Config - 0x0000000008000a18 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x0000000008000a18 HAL_SYSTICK_Config - .text.HAL_RCC_GetSysClockFreq - 0x0000000008000a4c 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x0000000008000a4c HAL_RCC_GetSysClockFreq - .text.HAL_RCC_OscConfig - 0x0000000008000adc 0x4a0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x0000000008000adc HAL_RCC_OscConfig - .text.HAL_RCC_ClockConfig - 0x0000000008000f7c 0x19c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x0000000008000f7c HAL_RCC_ClockConfig - .text.HAL_RCCEx_PeriphCLKConfig - 0x0000000008001118 0x178 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - 0x0000000008001118 HAL_RCCEx_PeriphCLKConfig - .text.LL_GPIO_Init - 0x0000000008001290 0xa2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - 0x0000000008001290 LL_GPIO_Init - *fill* 0x0000000008001332 0x2 - .text.LL_I2C_Init - 0x0000000008001334 0x74 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - 0x0000000008001334 LL_I2C_Init - .text.LL_LPUART_Init - 0x00000000080013a8 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - 0x00000000080013a8 LL_LPUART_Init - .text.LL_RCC_HSI_IsReady - 0x0000000008001424 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .text.LL_RCC_IsActiveFlag_HSIDIV - 0x0000000008001434 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .text.RCC_GetHCLKClockFreq - 0x0000000008001444 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - 0x0000000008001444 RCC_GetHCLKClockFreq - .text.RCC_GetPCLK1ClockFreq - 0x000000000800145c 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - 0x000000000800145c RCC_GetPCLK1ClockFreq - .text.RCC_PLL_GetFreqDomain_SYS - 0x0000000008001474 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - 0x0000000008001474 RCC_PLL_GetFreqDomain_SYS - .text.RCC_GetSystemClockFreq - 0x00000000080014c4 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - 0x00000000080014c4 RCC_GetSystemClockFreq - .text.LL_RCC_GetLPUARTClockFreq - 0x0000000008001524 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - 0x0000000008001524 LL_RCC_GetLPUARTClockFreq - .text.__libc_init_array - 0x0000000008001590 0x48 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-init.o) - 0x0000000008001590 __libc_init_array - .text.memset 0x00000000080015d8 0x10 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-memset.o) - 0x00000000080015d8 memset - *(.glue_7) - .glue_7 0x00000000080015e8 0x0 linker stubs - *(.glue_7t) - .glue_7t 0x00000000080015e8 0x0 linker stubs - *(.eh_frame) - .eh_frame 0x00000000080015e8 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtbegin.o - *(.init) - .init 0x00000000080015e8 0x4 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crti.o - 0x00000000080015e8 _init - .init 0x00000000080015ec 0x8 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtn.o - *(.fini) - .fini 0x00000000080015f4 0x4 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crti.o - 0x00000000080015f4 _fini - .fini 0x00000000080015f8 0x8 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtn.o - 0x0000000008001600 . = ALIGN (0x4) - 0x0000000008001600 _etext = . - -.vfp11_veneer 0x0000000008001600 0x0 - .vfp11_veneer 0x0000000008001600 0x0 linker stubs - -.v4_bx 0x0000000008001600 0x0 - .v4_bx 0x0000000008001600 0x0 linker stubs - -.iplt 0x0000000008001600 0x0 - .iplt 0x0000000008001600 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtbegin.o - -.rodata 0x0000000008001600 0x24 - 0x0000000008001600 . = ALIGN (0x4) - *(.rodata) - *(.rodata*) - .rodata.AHBPrescTable - 0x0000000008001600 0x10 Core/Src/system_stm32l0xx.o - 0x0000000008001600 AHBPrescTable - .rodata.APBPrescTable - 0x0000000008001610 0x8 Core/Src/system_stm32l0xx.o - 0x0000000008001610 APBPrescTable - .rodata.PLLMulTable - 0x0000000008001618 0x9 Core/Src/system_stm32l0xx.o - 0x0000000008001618 PLLMulTable - 0x0000000008001624 . = ALIGN (0x4) - *fill* 0x0000000008001621 0x3 - -.ARM.extab 0x0000000008001624 0x0 - 0x0000000008001624 . = ALIGN (0x4) - *(.ARM.extab* .gnu.linkonce.armextab.*) - 0x0000000008001624 . = ALIGN (0x4) - -.ARM 0x0000000008001624 0x8 - 0x0000000008001624 . = ALIGN (0x4) - 0x0000000008001624 __exidx_start = . - *(.ARM.exidx*) - .ARM.exidx 0x0000000008001624 0x8 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_udivmoddi4.o) - 0x000000000800162c __exidx_end = . - 0x000000000800162c . = ALIGN (0x4) - -.rel.dyn 0x000000000800162c 0x0 - .rel.iplt 0x000000000800162c 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtbegin.o - -.preinit_array 0x000000000800162c 0x0 - 0x000000000800162c . = ALIGN (0x4) - 0x000000000800162c PROVIDE (__preinit_array_start = .) - *(.preinit_array*) - 0x000000000800162c PROVIDE (__preinit_array_end = .) - 0x000000000800162c . = ALIGN (0x4) - -.init_array 0x000000000800162c 0x4 - 0x000000000800162c . = ALIGN (0x4) - 0x000000000800162c PROVIDE (__init_array_start = .) - *(SORT_BY_NAME(.init_array.*)) - *(.init_array*) - .init_array 0x000000000800162c 0x4 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtbegin.o - 0x0000000008001630 PROVIDE (__init_array_end = .) - 0x0000000008001630 . = ALIGN (0x4) - -.fini_array 0x0000000008001630 0x4 - 0x0000000008001630 . = ALIGN (0x4) - [!provide] PROVIDE (__fini_array_start = .) - *(SORT_BY_NAME(.fini_array.*)) - *(.fini_array*) - .fini_array 0x0000000008001630 0x4 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtbegin.o - [!provide] PROVIDE (__fini_array_end = .) - 0x0000000008001634 . = ALIGN (0x4) - 0x0000000008001634 _sidata = LOADADDR (.data) - -.data 0x0000000020000000 0xc load address 0x0000000008001634 - 0x0000000020000000 . = ALIGN (0x4) - 0x0000000020000000 _sdata = . - *(.data) - *(.data*) - .data.SystemCoreClock - 0x0000000020000000 0x4 Core/Src/system_stm32l0xx.o - 0x0000000020000000 SystemCoreClock - .data.uwTickFreq - 0x0000000020000004 0x1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x0000000020000004 uwTickFreq - *fill* 0x0000000020000005 0x3 - .data.uwTickPrio - 0x0000000020000008 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x0000000020000008 uwTickPrio - *(.RamFunc) - *(.RamFunc*) - 0x000000002000000c . = ALIGN (0x4) - 0x000000002000000c _edata = . - -.igot.plt 0x000000002000000c 0x0 load address 0x0000000008001640 - .igot.plt 0x000000002000000c 0x0 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtbegin.o - 0x000000002000000c . = ALIGN (0x4) - -.bss 0x000000002000000c 0x20 load address 0x0000000008001640 - 0x000000002000000c _sbss = . - 0x000000002000000c __bss_start__ = _sbss - *(.bss) - .bss 0x000000002000000c 0x1c /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtbegin.o - *(.bss*) - *(COMMON) - COMMON 0x0000000020000028 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x0000000020000028 uwTick - 0x000000002000002c . = ALIGN (0x4) - 0x000000002000002c _ebss = . - 0x000000002000002c __bss_end__ = _ebss - -._user_heap_stack - 0x000000002000002c 0x604 load address 0x0000000008001640 - 0x0000000020000030 . = ALIGN (0x8) - *fill* 0x000000002000002c 0x4 - [!provide] PROVIDE (end = .) - 0x0000000020000030 PROVIDE (_end = .) - 0x0000000020000230 . = (. + _Min_Heap_Size) - *fill* 0x0000000020000030 0x200 - 0x0000000020000630 . = (. + _Min_Stack_Size) - *fill* 0x0000000020000230 0x400 - 0x0000000020000630 . = ALIGN (0x8) - -/DISCARD/ - libc.a(*) - libm.a(*) - libgcc.a(*) - -.ARM.attributes - 0x0000000000000000 0x28 - *(.ARM.attributes) - .ARM.attributes - 0x0000000000000000 0x1e /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crti.o - .ARM.attributes - 0x000000000000001e 0x2c /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtbegin.o - .ARM.attributes - 0x000000000000004a 0x2c Core/Src/main.o - .ARM.attributes - 0x0000000000000076 0x2c Core/Src/stm32l0xx_hal_msp.o - .ARM.attributes - 0x00000000000000a2 0x2c Core/Src/stm32l0xx_it.o - .ARM.attributes - 0x00000000000000ce 0x2c Core/Src/system_stm32l0xx.o - .ARM.attributes - 0x00000000000000fa 0x22 Core/Startup/startup_stm32l011f4ux.o - .ARM.attributes - 0x000000000000011c 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .ARM.attributes - 0x0000000000000148 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .ARM.attributes - 0x0000000000000174 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .ARM.attributes - 0x00000000000001a0 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .ARM.attributes - 0x00000000000001cc 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .ARM.attributes - 0x00000000000001f8 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .ARM.attributes - 0x0000000000000224 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .ARM.attributes - 0x0000000000000250 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .ARM.attributes - 0x000000000000027c 0x2c /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-init.o) - .ARM.attributes - 0x00000000000002a8 0x2c /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-memset.o) - .ARM.attributes - 0x00000000000002d4 0x1e /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o) - .ARM.attributes - 0x00000000000002f2 0x1e /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_dvmd_tls.o) - .ARM.attributes - 0x0000000000000310 0x1e /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_aeabi_uldivmod.o) - .ARM.attributes - 0x000000000000032e 0x2c /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_muldi3.o) - .ARM.attributes - 0x000000000000035a 0x2c /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_udivmoddi4.o) - .ARM.attributes - 0x0000000000000386 0x1e /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_clzdi2.o) - .ARM.attributes - 0x00000000000003a4 0x1e /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_clzsi2.o) - .ARM.attributes - 0x00000000000003c2 0x1e /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/crtn.o -OUTPUT(iaq_wired_sensor.elf elf32-littlearm) -LOAD linker stubs -LOAD /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc.a -LOAD /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a -LOAD /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a - -.debug_info 0x0000000000000000 0x6c2d - .debug_info 0x0000000000000000 0x1b86 Core/Src/main.o - .debug_info 0x0000000000001b86 0x2f0 Core/Src/stm32l0xx_hal_msp.o - .debug_info 0x0000000000001e76 0x21a Core/Src/stm32l0xx_it.o - .debug_info 0x0000000000002090 0x37c Core/Src/system_stm32l0xx.o - .debug_info 0x000000000000240c 0x22 Core/Startup/startup_stm32l011f4ux.o - .debug_info 0x000000000000242e 0x989 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_info 0x0000000000002db7 0x961 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_info 0x0000000000003718 0xc7e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_info 0x0000000000004396 0x607 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_info 0x000000000000499d 0x85a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_info 0x00000000000051f7 0x831 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_info 0x0000000000005a28 0x6fb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_info 0x0000000000006123 0xb0a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - -.debug_abbrev 0x0000000000000000 0x1b63 - .debug_abbrev 0x0000000000000000 0x3be Core/Src/main.o - .debug_abbrev 0x00000000000003be 0x109 Core/Src/stm32l0xx_hal_msp.o - .debug_abbrev 0x00000000000004c7 0x137 Core/Src/stm32l0xx_it.o - .debug_abbrev 0x00000000000005fe 0x14b Core/Src/system_stm32l0xx.o - .debug_abbrev 0x0000000000000749 0x12 Core/Startup/startup_stm32l011f4ux.o - .debug_abbrev 0x000000000000075b 0x2d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_abbrev 0x0000000000000a2f 0x28d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_abbrev 0x0000000000000cbc 0x2f4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_abbrev 0x0000000000000fb0 0x212 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_abbrev 0x00000000000011c2 0x226 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_abbrev 0x00000000000013e8 0x1fd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_abbrev 0x00000000000015e5 0x249 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_abbrev 0x000000000000182e 0x335 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - -.debug_loc 0x0000000000000000 0x2331 - .debug_loc 0x0000000000000000 0x60f Core/Src/main.o - .debug_loc 0x000000000000060f 0x178 Core/Src/system_stm32l0xx.o - .debug_loc 0x0000000000000787 0x13e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_loc 0x00000000000008c5 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_loc 0x0000000000000d14 0x6fa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_loc 0x000000000000140e 0x377 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_loc 0x0000000000001785 0x333 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_loc 0x0000000000001ab8 0x1f3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_loc 0x0000000000001cab 0x21e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_loc 0x0000000000001ec9 0x468 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - -.debug_aranges 0x0000000000000000 0x430 - .debug_aranges - 0x0000000000000000 0x38 Core/Src/main.o - .debug_aranges - 0x0000000000000038 0x20 Core/Src/stm32l0xx_hal_msp.o - .debug_aranges - 0x0000000000000058 0x38 Core/Src/stm32l0xx_it.o - .debug_aranges - 0x0000000000000090 0x28 Core/Src/system_stm32l0xx.o - .debug_aranges - 0x00000000000000b8 0x28 Core/Startup/startup_stm32l011f4ux.o - .debug_aranges - 0x00000000000000e0 0x108 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_aranges - 0x00000000000001e8 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_aranges - 0x0000000000000260 0x68 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_aranges - 0x00000000000002c8 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_aranges - 0x0000000000000320 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_aranges - 0x0000000000000350 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_aranges - 0x0000000000000380 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_aranges - 0x00000000000003b0 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - -.debug_ranges 0x0000000000000000 0xa18 - .debug_ranges 0x0000000000000000 0x3c0 Core/Src/main.o - .debug_ranges 0x00000000000003c0 0x10 Core/Src/stm32l0xx_hal_msp.o - .debug_ranges 0x00000000000003d0 0x28 Core/Src/stm32l0xx_it.o - .debug_ranges 0x00000000000003f8 0x18 Core/Src/system_stm32l0xx.o - .debug_ranges 0x0000000000000410 0x20 Core/Startup/startup_stm32l011f4ux.o - .debug_ranges 0x0000000000000430 0xf8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_ranges 0x0000000000000528 0x100 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_ranges 0x0000000000000628 0xa0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_ranges 0x00000000000006c8 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_ranges 0x0000000000000710 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_ranges 0x0000000000000748 0x68 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_ranges 0x00000000000007b0 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_ranges 0x0000000000000808 0x210 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - -.debug_macro 0x0000000000000000 0x1133a - .debug_macro 0x0000000000000000 0x209 Core/Src/main.o - .debug_macro 0x0000000000000209 0xa8a Core/Src/main.o - .debug_macro 0x0000000000000c93 0x119 Core/Src/main.o - .debug_macro 0x0000000000000dac 0x2e Core/Src/main.o - .debug_macro 0x0000000000000dda 0x28 Core/Src/main.o - .debug_macro 0x0000000000000e02 0x22 Core/Src/main.o - .debug_macro 0x0000000000000e24 0x8e Core/Src/main.o - .debug_macro 0x0000000000000eb2 0x51 Core/Src/main.o - .debug_macro 0x0000000000000f03 0x103 Core/Src/main.o - .debug_macro 0x0000000000001006 0x6a Core/Src/main.o - .debug_macro 0x0000000000001070 0x1df Core/Src/main.o - .debug_macro 0x000000000000124f 0x1c Core/Src/main.o - .debug_macro 0x000000000000126b 0x22 Core/Src/main.o - .debug_macro 0x000000000000128d 0xb5 Core/Src/main.o - .debug_macro 0x0000000000001342 0x3ad Core/Src/main.o - .debug_macro 0x00000000000016ef 0x7b9c Core/Src/main.o - .debug_macro 0x000000000000928b 0x3c Core/Src/main.o - .debug_macro 0x00000000000092c7 0x352b Core/Src/main.o - .debug_macro 0x000000000000c7f2 0x174 Core/Src/main.o - .debug_macro 0x000000000000c966 0x5b Core/Src/main.o - .debug_macro 0x000000000000c9c1 0x899 Core/Src/main.o - .debug_macro 0x000000000000d25a 0x42e Core/Src/main.o - .debug_macro 0x000000000000d688 0x182 Core/Src/main.o - .debug_macro 0x000000000000d80a 0x13f Core/Src/main.o - .debug_macro 0x000000000000d949 0xf1 Core/Src/main.o - .debug_macro 0x000000000000da3a 0x28e Core/Src/main.o - .debug_macro 0x000000000000dcc8 0x28 Core/Src/main.o - .debug_macro 0x000000000000dcf0 0x129 Core/Src/main.o - .debug_macro 0x000000000000de19 0x244 Core/Src/main.o - .debug_macro 0x000000000000e05d 0x22c Core/Src/main.o - .debug_macro 0x000000000000e289 0x5b Core/Src/main.o - .debug_macro 0x000000000000e2e4 0xa5 Core/Src/main.o - .debug_macro 0x000000000000e389 0x187 Core/Src/main.o - .debug_macro 0x000000000000e510 0x16 Core/Src/main.o - .debug_macro 0x000000000000e526 0x11c Core/Src/main.o - .debug_macro 0x000000000000e642 0x285 Core/Src/main.o - .debug_macro 0x000000000000e8c7 0x246 Core/Src/main.o - .debug_macro 0x000000000000eb0d 0x229 Core/Src/main.o - .debug_macro 0x000000000000ed36 0x3b4 Core/Src/main.o - .debug_macro 0x000000000000f0ea 0x13d Core/Src/main.o - .debug_macro 0x000000000000f227 0x12d Core/Src/main.o - .debug_macro 0x000000000000f354 0x109 Core/Src/main.o - .debug_macro 0x000000000000f45d 0xa7 Core/Src/main.o - .debug_macro 0x000000000000f504 0x16 Core/Src/main.o - .debug_macro 0x000000000000f51a 0x2a Core/Src/main.o - .debug_macro 0x000000000000f544 0xdb Core/Src/main.o - .debug_macro 0x000000000000f61f 0x28 Core/Src/main.o - .debug_macro 0x000000000000f647 0x209 Core/Src/stm32l0xx_hal_msp.o - .debug_macro 0x000000000000f850 0x213 Core/Src/stm32l0xx_it.o - .debug_macro 0x000000000000fa63 0x197 Core/Src/system_stm32l0xx.o - .debug_macro 0x000000000000fbfa 0x1bb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x000000000000fdb5 0x197 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x000000000000ff4c 0x1bb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x0000000000010107 0x197 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x000000000001029e 0x1d9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x0000000000010477 0x127 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_macro 0x000000000001059e 0x1d9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x0000000000010777 0x240 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_macro 0x00000000000109b7 0x1ee Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000010ba5 0x223 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_macro 0x0000000000010dc8 0x1c4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_macro 0x0000000000010f8c 0x3ae Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - -.debug_line 0x0000000000000000 0x7f60 - .debug_line 0x0000000000000000 0xfbb Core/Src/main.o - .debug_line 0x0000000000000fbb 0x770 Core/Src/stm32l0xx_hal_msp.o - .debug_line 0x000000000000172b 0x7d5 Core/Src/stm32l0xx_it.o - .debug_line 0x0000000000001f00 0x758 Core/Src/system_stm32l0xx.o - .debug_line 0x0000000000002658 0x9b Core/Startup/startup_stm32l011f4ux.o - .debug_line 0x00000000000026f3 0xaff Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_line 0x00000000000031f2 0x9dc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_line 0x0000000000003bce 0x1249 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_line 0x0000000000004e17 0xb28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_line 0x000000000000593f 0x881 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_line 0x00000000000061c0 0x843 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_line 0x0000000000006a03 0x82c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_line 0x000000000000722f 0xd31 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - -.debug_str 0x0000000000000000 0x62aa3 - .debug_str 0x0000000000000000 0x60caf Core/Src/main.o - 0x61704 (size before relaxing) - .debug_str 0x0000000000060caf 0x2c Core/Src/stm32l0xx_hal_msp.o - 0x60cd1 (size before relaxing) - .debug_str 0x0000000000060cdb 0x9d Core/Src/stm32l0xx_it.o - 0x60caa (size before relaxing) - .debug_str 0x0000000000060d78 0x61 Core/Src/system_stm32l0xx.o - 0x5a86f (size before relaxing) - .debug_str 0x0000000000060dd9 0x36 Core/Startup/startup_stm32l011f4ux.o - 0x92 (size before relaxing) - .debug_str 0x0000000000060e0f 0x426 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x5aeb3 (size before relaxing) - .debug_str 0x0000000000061235 0x146 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x5aba3 (size before relaxing) - .debug_str 0x000000000006137b 0x243 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x5ace7 (size before relaxing) - .debug_str 0x00000000000615be 0x133 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - 0x5aaab (size before relaxing) - .debug_str 0x00000000000616f1 0x545 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - 0x5b971 (size before relaxing) - .debug_str 0x0000000000061c36 0x3ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - 0x5c0e6 (size before relaxing) - .debug_str 0x0000000000062025 0x50c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - 0x5d75c (size before relaxing) - .debug_str 0x0000000000062531 0x572 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - 0x5c666 (size before relaxing) - -.comment 0x0000000000000000 0x53 - .comment 0x0000000000000000 0x53 Core/Src/main.o - 0x54 (size before relaxing) - .comment 0x0000000000000053 0x54 Core/Src/stm32l0xx_hal_msp.o - .comment 0x0000000000000053 0x54 Core/Src/stm32l0xx_it.o - .comment 0x0000000000000053 0x54 Core/Src/system_stm32l0xx.o - .comment 0x0000000000000053 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .comment 0x0000000000000053 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .comment 0x0000000000000053 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .comment 0x0000000000000053 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .comment 0x0000000000000053 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .comment 0x0000000000000053 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .comment 0x0000000000000053 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .comment 0x0000000000000053 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - -.debug_frame 0x0000000000000000 0x91c - .debug_frame 0x0000000000000000 0x6c Core/Src/main.o - .debug_frame 0x000000000000006c 0x20 Core/Src/stm32l0xx_hal_msp.o - .debug_frame 0x000000000000008c 0x78 Core/Src/stm32l0xx_it.o - .debug_frame 0x0000000000000104 0x3c Core/Src/system_stm32l0xx.o - .debug_frame 0x0000000000000140 0x234 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_frame 0x0000000000000374 0xe4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_frame 0x0000000000000458 0x118 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_frame 0x0000000000000570 0xbc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_frame 0x000000000000062c 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o - .debug_frame 0x0000000000000680 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o - .debug_frame 0x00000000000006cc 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o - .debug_frame 0x000000000000071c 0x124 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o - .debug_frame 0x0000000000000840 0x2c /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-init.o) - .debug_frame 0x000000000000086c 0x20 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(lib_a-memset.o) - .debug_frame 0x000000000000088c 0x20 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o) - .debug_frame 0x00000000000008ac 0x34 /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_muldi3.o) - .debug_frame 0x00000000000008e0 0x3c /opt/st/stm32cubeide_1.6.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.linux64_1.5.0.202011040924/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v6-m/nofp/libgcc.a(_udivmoddi4.o) diff --git a/fw/Debug/makefile b/fw/Debug/makefile deleted file mode 100644 index 7d54beb..0000000 --- a/fw/Debug/makefile +++ /dev/null @@ -1,101 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -# Toolchain: GNU Tools for STM32 (9-2020-q2-update) -################################################################################ - --include ../makefile.init - -RM := rm -rf - -# All of the sources participating in the build are defined here --include sources.mk --include Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk --include Core/Startup/subdir.mk --include Core/Src/subdir.mk --include subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(S_DEPS)),) --include $(S_DEPS) -endif -ifneq ($(strip $(S_UPPER_DEPS)),) --include $(S_UPPER_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -endif - --include ../makefile.defs - -OPTIONAL_TOOL_DEPS := \ -$(wildcard ../makefile.defs) \ -$(wildcard ../makefile.init) \ -$(wildcard ../makefile.targets) \ - - -BUILD_ARTIFACT_NAME := iaq_wired_sensor -BUILD_ARTIFACT_EXTENSION := elf -BUILD_ARTIFACT_PREFIX := -BUILD_ARTIFACT := $(BUILD_ARTIFACT_PREFIX)$(BUILD_ARTIFACT_NAME).$(BUILD_ARTIFACT_EXTENSION) - -# Add inputs and outputs from these tool invocations to the build variables -EXECUTABLES += \ -iaq_wired_sensor.elf \ - -SIZE_OUTPUT += \ -default.size.stdout \ - -OBJDUMP_LIST += \ -iaq_wired_sensor.list \ - -OBJCOPY_BIN += \ -iaq_wired_sensor.bin \ - - -# All Target -all: main-build - -# Main-build Target -main-build: iaq_wired_sensor.elf secondary-outputs - -# Tool invocations -iaq_wired_sensor.elf: $(OBJS) $(USER_OBJS) /home/david/Personal/Projects/HDIoT/Smart_Household/Wired_Sensors/iaq_wired_sensor/fw/STM32L011F4UX_FLASH.ld makefile objects.list $(OPTIONAL_TOOL_DEPS) - arm-none-eabi-gcc -o "iaq_wired_sensor.elf" @"objects.list" $(USER_OBJS) $(LIBS) -mcpu=cortex-m0plus -T"/home/david/Personal/Projects/HDIoT/Smart_Household/Wired_Sensors/iaq_wired_sensor/fw/STM32L011F4UX_FLASH.ld" --specs=nosys.specs -Wl,-Map="iaq_wired_sensor.map" -Wl,--gc-sections -static --specs=nano.specs -mfloat-abi=soft -mthumb -Wl,--start-group -lc -lm -Wl,--end-group - @echo 'Finished building target: $@' - @echo ' ' - -default.size.stdout: $(EXECUTABLES) makefile objects.list $(OPTIONAL_TOOL_DEPS) - arm-none-eabi-size $(EXECUTABLES) - @echo 'Finished building: $@' - @echo ' ' - -iaq_wired_sensor.list: $(EXECUTABLES) makefile objects.list $(OPTIONAL_TOOL_DEPS) - arm-none-eabi-objdump -h -S $(EXECUTABLES) > "iaq_wired_sensor.list" - @echo 'Finished building: $@' - @echo ' ' - -iaq_wired_sensor.bin: $(EXECUTABLES) makefile objects.list $(OPTIONAL_TOOL_DEPS) - arm-none-eabi-objcopy -O binary $(EXECUTABLES) "iaq_wired_sensor.bin" - @echo 'Finished building: $@' - @echo ' ' - -# Other Targets -clean: - -$(RM) * - -@echo ' ' - -secondary-outputs: $(SIZE_OUTPUT) $(OBJDUMP_LIST) $(OBJCOPY_BIN) - -fail-specified-linker-script-missing: - @echo 'Error: Cannot find the specified linker script. Check the linker settings in the build configuration.' - @exit 2 - -warn-no-linker-script-specified: - @echo 'Warning: No linker script specified. Check the linker settings in the build configuration.' - -.PHONY: all clean dependents fail-specified-linker-script-missing warn-no-linker-script-specified -.SECONDARY: - --include ../makefile.targets diff --git a/fw/Debug/objects.list b/fw/Debug/objects.list deleted file mode 100644 index ac9feea..0000000 --- a/fw/Debug/objects.list +++ /dev/null @@ -1,30 +0,0 @@ -"Core/Src/main.o" -"Core/Src/stm32l0xx_hal_msp.o" -"Core/Src/stm32l0xx_it.o" -"Core/Src/syscalls.o" -"Core/Src/sysmem.o" -"Core/Src/system_stm32l0xx.o" -"Core/Startup/startup_stm32l011f4ux.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_exti.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_dma.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_exti.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_gpio.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_i2c.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_lpuart.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_rcc.o" -"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_ll_utils.o" diff --git a/fw/Debug/objects.mk b/fw/Debug/objects.mk deleted file mode 100644 index e12976d..0000000 --- a/fw/Debug/objects.mk +++ /dev/null @@ -1,9 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -# Toolchain: GNU Tools for STM32 (9-2020-q2-update) -################################################################################ - -USER_OBJS := - -LIBS := - diff --git a/fw/Debug/sources.mk b/fw/Debug/sources.mk deleted file mode 100644 index a511ac3..0000000 --- a/fw/Debug/sources.mk +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -# Toolchain: GNU Tools for STM32 (9-2020-q2-update) -################################################################################ - -ELF_SRCS := -OBJ_SRCS := -S_SRCS := -C_SRCS := -S_UPPER_SRCS := -O_SRCS := -SIZE_OUTPUT := -OBJDUMP_LIST := -EXECUTABLES := -OBJS := -S_DEPS := -S_UPPER_DEPS := -C_DEPS := -OBJCOPY_BIN := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -Core/Src \ -Core/Startup \ -Drivers/STM32L0xx_HAL_Driver/Src \ -